From f528c353aafdaf944e2a1a87d4cd8a2f132d24d0 Mon Sep 17 00:00:00 2001 From: tyler-mairose-sp Date: Tue, 12 Sep 2023 14:44:05 +0000 Subject: [PATCH] Apply automatic changes --- dereferenced/deref-sailpoint-api.beta.yaml | 1074 +- postman/collections/sailpoint-api-beta.json | 12055 ++++++++++-------- postman/links/beta-link.txt | 2 +- 3 files changed, 7699 insertions(+), 5432 deletions(-) diff --git a/dereferenced/deref-sailpoint-api.beta.yaml b/dereferenced/deref-sailpoint-api.beta.yaml index fa62798..7b50aec 100644 --- a/dereferenced/deref-sailpoint-api.beta.yaml +++ b/dereferenced/deref-sailpoint-api.beta.yaml @@ -35839,8 +35839,12 @@ paths: operationId: listCertificationReviewers tags: - Certifications - summary: List of Reviewers for the certification + summary: List of Reviewers for certification description: This API returns a list of reviewers for the certification. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API. Reviewers for this certification can also call this API. + security: + - UserContextAuth: + - 'idn:certification:read' + deprecated: true parameters: - in: path name: id @@ -35901,6 +35905,7 @@ paths: **name**: *eq, sw* **email**: *eq, sw* + example: name eq "Bob" - in: query name: sorters schema: @@ -35910,6 +35915,7 @@ paths: Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, email** + example: name responses: '200': description: A list of reviewers @@ -122833,6 +122839,1072 @@ paths: - locale: en-US localeOrigin: DEFAULT text: An internal fault occurred. + '/sources/{sourceId}/native-change-detection-config': + get: + operationId: getNativeChangeDetectionConfig + tags: + - Sources + summary: Native Change Detection Configuration + security: + - UserContextAuth: + - 'idn:sources:read' + description: |- + This API returns the existing native change detection configuration for a source specified by the given ID. + A token with ORG_ADMIN authority is required to call this API. + parameters: + - in: path + name: id + required: true + schema: + type: string + description: The source id + example: 2c9180835d191a86015d28455b4a2329 + responses: + '200': + description: Native change detection configuration for a source + content: + application/json: + schema: + type: object + description: Source configuration information for Native Change Detection that is read and used by account aggregation process. + properties: + enabled: + description: A flag indicating if Native Change Detection is enabled for a source. + type: boolean + example: true + default: false + operations: + type: array + description: Operation types for which Native Change Detection is enabled for a source. + items: + type: string + enum: + - ACCOUNT_UPDATED + - ACCOUNT_CREATED + - ACCOUNT_DELETED + example: + - ACCOUNT_UPDATED + - ACCOUNT_DELETED + allEntitlements: + description: A flag indicating that all entitlements participate in Native Change Detection. + type: boolean + example: false + default: false + allNonEntitlementAttributes: + description: A flag indicating that all non-entitlement account attributes participate in Native Change Detection. + type: boolean + example: false + default: false + selectedEntitlements: + description: If allEntitlements flag is off this field lists entitlements that participate in Native Change Detection. + type: array + items: + type: string + example: + - memberOf + - memberOfSharedMailbox + selectedNonEntitlementAttributes: + description: If allNonEntitlementAttributes flag is off this field lists non-entitlement account attributes that participate in Native Change Detection. + externalDocs: + description: Learn more about account attributes here. + url: 'https://documentation.sailpoint.com/saas/help/accounts/schema.html' + type: array + items: + type: string + example: + - lastName + - phoneNumber + - objectType + - servicePrincipalName + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '404': + description: Not Found - returned if the request URL refers to a resource or object that does not exist + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '404': + summary: An example of a 404 response object + value: + detailCode: 404 Not found + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server did not find a current representation for the target resource. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + put: + operationId: putNativeChangeDetectionConfig + tags: + - Sources + summary: Update Native Change Detection Configuration + security: + - UserContextAuth: + - 'idn:sources:update' + description: |- + Replaces the native change detection configuration for the source specified by the given ID with the configuration provided in the request body. + + A token with ORG_ADMIN authority is required to call this API. + parameters: + - in: path + name: id + required: true + schema: + type: string + description: The source id + example: 2c9180835d191a86015d28455b4a2329 + requestBody: + required: true + content: + application/json: + schema: + type: object + description: Source configuration information for Native Change Detection that is read and used by account aggregation process. + properties: + enabled: + description: A flag indicating if Native Change Detection is enabled for a source. + type: boolean + example: true + default: false + operations: + type: array + description: Operation types for which Native Change Detection is enabled for a source. + items: + type: string + enum: + - ACCOUNT_UPDATED + - ACCOUNT_CREATED + - ACCOUNT_DELETED + example: + - ACCOUNT_UPDATED + - ACCOUNT_DELETED + allEntitlements: + description: A flag indicating that all entitlements participate in Native Change Detection. + type: boolean + example: false + default: false + allNonEntitlementAttributes: + description: A flag indicating that all non-entitlement account attributes participate in Native Change Detection. + type: boolean + example: false + default: false + selectedEntitlements: + description: If allEntitlements flag is off this field lists entitlements that participate in Native Change Detection. + type: array + items: + type: string + example: + - memberOf + - memberOfSharedMailbox + selectedNonEntitlementAttributes: + description: If allNonEntitlementAttributes flag is off this field lists non-entitlement account attributes that participate in Native Change Detection. + externalDocs: + description: Learn more about account attributes here. + url: 'https://documentation.sailpoint.com/saas/help/accounts/schema.html' + type: array + items: + type: string + example: + - lastName + - phoneNumber + - objectType + - servicePrincipalName + responses: + '200': + description: Updated native change detection configuration for a source + content: + application/json: + schema: + type: object + description: Source configuration information for Native Change Detection that is read and used by account aggregation process. + properties: + enabled: + description: A flag indicating if Native Change Detection is enabled for a source. + type: boolean + example: true + default: false + operations: + type: array + description: Operation types for which Native Change Detection is enabled for a source. + items: + type: string + enum: + - ACCOUNT_UPDATED + - ACCOUNT_CREATED + - ACCOUNT_DELETED + example: + - ACCOUNT_UPDATED + - ACCOUNT_DELETED + allEntitlements: + description: A flag indicating that all entitlements participate in Native Change Detection. + type: boolean + example: false + default: false + allNonEntitlementAttributes: + description: A flag indicating that all non-entitlement account attributes participate in Native Change Detection. + type: boolean + example: false + default: false + selectedEntitlements: + description: If allEntitlements flag is off this field lists entitlements that participate in Native Change Detection. + type: array + items: + type: string + example: + - memberOf + - memberOfSharedMailbox + selectedNonEntitlementAttributes: + description: If allNonEntitlementAttributes flag is off this field lists non-entitlement account attributes that participate in Native Change Detection. + externalDocs: + description: Learn more about account attributes here. + url: 'https://documentation.sailpoint.com/saas/help/accounts/schema.html' + type: array + items: + type: string + example: + - lastName + - phoneNumber + - objectType + - servicePrincipalName + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '404': + description: Not Found - returned if the request URL refers to a resource or object that does not exist + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '404': + summary: An example of a 404 response object + value: + detailCode: 404 Not found + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server did not find a current representation for the target resource. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + delete: + operationId: deleteNativeChangeDetectionConfig + tags: + - Sources + summary: Delete Native Change Detection Configuration + description: |- + Deletes the native change detection configuration for the source specified by the given ID. + A token with API, or ORG_ADMIN authority is required to call this API. + security: + - UserContextAuth: + - 'idn:sources:update' + parameters: + - in: path + name: id + required: true + schema: + type: string + description: The source id + example: 2c9180835d191a86015d28455b4a2329 + responses: + '204': + description: No content - indicates the request was successful but there is no content to be returned in the response. + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '404': + description: Not Found - returned if the request URL refers to a resource or object that does not exist + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '404': + summary: An example of a 404 response object + value: + detailCode: 404 Not found + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server did not find a current representation for the target resource. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. '/sources/{sourceId}/provisioning-policies': get: operationId: listProvisioningPolicies diff --git a/postman/collections/sailpoint-api-beta.json b/postman/collections/sailpoint-api-beta.json index 238cfd8..11accab 100644 --- a/postman/collections/sailpoint-api-beta.json +++ b/postman/collections/sailpoint-api-beta.json @@ -5,7 +5,7 @@ "description": "Use this API to implement and customize access profile functionality.\nWith this functionality in place, administrators can create access profiles and configure them for use throughout IdentityNow, 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 IdentityNow 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 IdentityNow. IdentityNow 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 IdentityNow, 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 IdentityNow 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": "a0434e32-ae73-4465-8cf2-dfe25c91e64c", + "id": "099d3266-e9e9-4379-8c87-b13e40524a88", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -107,7 +107,7 @@ }, "response": [ { - "id": "bd71a9da-4aa4-49dd-a4b5-974f499d5b2c", + "id": "fd1190fd-d913-4f85-b330-2c5f9ee45753", "name": "List of Access Profiles", "originalRequest": { "url": { @@ -218,12 +218,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n },\n {\n \"owner\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n }\n]", + "body": "[\n {\n \"owner\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n },\n {\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97d85cc7-edbe-45b9-89c6-b992ce0205fa", + "id": "14decaed-461e-4c86-99ff-b8234f5948f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -334,12 +334,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57299b83-8202-410b-97c5-23d3fab61589", + "id": "c96e6ba7-1f08-4b0c-ab60-622321118ea6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -455,7 +455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b748ac85-9792-4009-acfa-7094b0b1f1be", + "id": "5b3a1f37-dbed-418b-b738-214d6f91395f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -566,12 +566,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f5cfcd5-735b-4933-a7ff-3dcdab161cf7", + "id": "1ba777b3-44e7-4ac6-97ec-febdf9fa0782", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -687,7 +687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e59bde79-48ab-4cb5-9da1-53990bcee2f0", + "id": "362be9d0-f0ec-4c26-be26-3c1dd86d5db7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -798,7 +798,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -809,7 +809,7 @@ } }, { - "id": "34e06f38-c930-45e6-bea5-16ec13ec14c4", + "id": "2d1c1b3e-f221-436c-996d-c7d7a525316c", "name": "Create an Access Profile", "request": { "name": "Create an Access Profile", @@ -840,7 +840,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "8d13e21b-7f34-4b8f-af60-276098071fe2", + "id": "c992001a-f802-4848-abdf-89c15d222e4a", "name": "Access Profile created", "originalRequest": { "url": { @@ -885,7 +885,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -902,12 +902,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "body": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad4f43d3-791c-49bc-b264-6608ab63ec31", + "id": "90194aff-43a9-47fe-a995-19caad031d07", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -941,7 +941,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -958,12 +958,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a55f1bab-40a9-42e4-a1cb-7fa9a6ea7b1a", + "id": "ae401e5f-d4b8-4c11-827e-6a924f055ce6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -997,7 +997,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1019,7 +1019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2407e09-0802-4f1a-b055-f592f2749aca", + "id": "fd7df0de-a2e5-41e2-8fcf-9f598a84e2d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1053,7 +1053,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1070,12 +1070,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "94a1a38c-77af-4398-a5ca-80df2c58c8f1", + "id": "07bf8f9a-e82a-4577-84a9-da12ed79affc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1109,7 +1109,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1131,7 +1131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dde0c363-eaf1-4a92-a8fb-0487f24b1456", + "id": "014c25e7-fd6b-4ddc-987a-4c21f513282a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1165,7 +1165,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1182,7 +1182,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -1193,7 +1193,7 @@ } }, { - "id": "d4f9f491-893a-4eca-86e8-6cf8c7b276e5", + "id": "424a8975-e61f-44b7-8fa1-bdc052365797", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1234,7 +1234,7 @@ }, "response": [ { - "id": "686092dd-c173-4048-96d2-284d2ef04729", + "id": "f5c7c334-2228-4c29-bd8c-88e7ecfd2abf", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1273,12 +1273,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "body": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "133a3f20-e157-4bfa-8e9f-1a839ffba896", + "id": "dc94c82c-0384-452d-80f3-9d1136bdd345", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1317,12 +1317,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f114fc8-a9ba-432e-9587-69a53bd3d97f", + "id": "86953274-5413-4409-998d-850dda434afc", "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": "a204720b-a3c9-487a-bb1c-6ff6396e499f", + "id": "bf0b3339-e230-46f1-929c-8fc7ad8bdbd0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1405,12 +1405,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d694e051-ea77-4ab1-9aeb-209b2649e7aa", + "id": "f5ca52e9-d948-460f-85a6-9dd7b784140b", "name": "Too Many Requests - Returned in response to too many requests in 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": "13aed498-b48a-4f65-b664-cdf4c5789b5a", + "id": "c560d583-0765-40df-98a1-742e90f9912e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1493,7 +1493,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -1504,7 +1504,7 @@ } }, { - "id": "610d6833-e836-4cdf-93d3-271f69e24e3b", + "id": "5972382d-b344-4784-b67e-20ee621d5ed2", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1547,7 +1547,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1558,7 +1558,7 @@ }, "response": [ { - "id": "4aba4084-4cdc-42a6-b6f7-7328eb841aa0", + "id": "44fe0ba1-acd2-4f19-a520-1d1fd1cbcff9", "name": "Responds with the Access Profile as updated.", "originalRequest": { "url": { @@ -1593,7 +1593,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1610,12 +1610,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "body": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"source\": {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"entitlements\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"name\": \"\"\n }\n ],\n \"requestable\": \"\",\n \"accessRequestConfig\": {\n \"commentsRequired\": \"\",\n \"denialCommentsRequired\": \"\",\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"APP_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "617d49c9-c1a9-4306-868b-ca1ea47999d0", + "id": "e1bd0917-5bea-4624-a59d-c3b5fb4fe973", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1650,7 +1650,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1667,12 +1667,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5aad2eae-c6ac-4f0a-ae81-7abfe6be1e45", + "id": "a42e26df-6171-40fa-a806-5ed146b1420e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1707,7 +1707,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1729,7 +1729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e8e42ef-1c8e-4337-a812-7b3211eccda6", + "id": "e5ba2a2d-ac3d-4eff-a3bb-391124833682", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1764,7 +1764,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1781,12 +1781,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cec75daf-a53e-4b5e-b32e-8c17aeb4d4e3", + "id": "ef090d16-9aed-4de8-ac0a-9c45f7778ddd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1821,7 +1821,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1843,7 +1843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ffe49bb-82de-4e37-b06b-ee3e301c20ec", + "id": "b1527727-5331-4adc-88c3-43d1b05522dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1878,7 +1878,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1895,7 +1895,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -1906,7 +1906,7 @@ } }, { - "id": "3c83a93c-79d1-4517-b400-8b2193fc4278", + "id": "e7f50f01-47bb-4afa-9681-01dcfcc41eff", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -1947,7 +1947,7 @@ }, "response": [ { - "id": "20983881-c1bd-40a3-8c21-b473222c82a2", + "id": "af49d977-c5f5-44e5-9005-7d7ec8bfd736", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -1981,7 +1981,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0bdc3f1e-b506-4163-84f7-519d7751078e", + "id": "c656e1d4-b40f-45e3-b2ef-b36076f6c93e", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -2020,12 +2020,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05dbc5cf-63d2-41d2-8c93-72918c1f75f7", + "id": "435ce3b5-88db-4897-9f9f-cc9d728bf92b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2069,7 +2069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0f5c8fd-d2d8-4ec3-8723-70a2be4e0ecd", + "id": "a7375896-0e85-4b76-8733-e18f5dc8e580", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2108,12 +2108,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7dfca505-0931-41d4-ba72-22c325294d9a", + "id": "608675cd-cf1e-460e-8352-1e9f5caef771", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2157,7 +2157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d31297fd-7999-4364-88fb-8acc9094b43b", + "id": "fec11836-be31-443b-8c9e-711e0097aace", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2196,7 +2196,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -2207,7 +2207,7 @@ } }, { - "id": "7ed5bc92-ad24-4aa4-95eb-3498d88f1cac", + "id": "3b62c7cd-12b3-46da-9622-70dd5c2f8642", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -2250,7 +2250,7 @@ }, "response": [ { - "id": "54b4de3c-3ca1-4276-9c18-7c738e3be159", + "id": "49605373-6a50-4f5f-a2af-f9395b84c08f", "name": "Returned only if **bestEffortOnly** is **false**, and one or more Access Profiles are in use.", "originalRequest": { "url": { @@ -2302,12 +2302,12 @@ "value": "application/json" } ], - "body": "{\n \"taskId\": \"\",\n \"pending\": [\n \"\",\n \"\"\n ],\n \"inUse\": [\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"taskId\": \"\",\n \"pending\": [\n \"\",\n \"\"\n ],\n \"inUse\": [\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff75719b-c49a-4ad9-ba35-62c5f11d91fa", + "id": "56bb2ba9-c844-4a3c-a8e5-7dee3c41e229", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -2359,12 +2359,12 @@ "value": "application/json" } ], - "body": "{\n \"taskId\": \"\",\n \"pending\": [\n \"\",\n \"\"\n ],\n \"inUse\": [\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"taskId\": \"\",\n \"pending\": [\n \"\",\n \"\"\n ],\n \"inUse\": [\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1cc9033b-d587-4bbc-900d-5e7e0e8d2cf1", + "id": "0369b603-e414-410c-955f-5429c453bb10", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2416,12 +2416,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0be0e92d-720e-457b-8994-fa8237cc4599", + "id": "351efc96-519d-4b7c-94a7-c25f7a9b6752", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2478,7 +2478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0595c6a-c07c-4ce5-ad7f-e80902da994f", + "id": "f21cdf82-69ba-45bc-a556-50a2abac1c0e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2530,12 +2530,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2fda24d2-0238-4b7e-b54f-3b78195f31dc", + "id": "a7fe6a4a-5dbb-4e50-9550-751f094f6609", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2592,7 +2592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "579239eb-4e39-441f-bb74-7613217474a4", + "id": "01115515-f687-4b32-af2b-46ac3c8a7260", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2644,7 +2644,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -2655,7 +2655,7 @@ } }, { - "id": "eb554d43-2fe6-4fee-8560-94b72b24fe92", + "id": "7eb67e72-3ea1-4c1c-b61e-c804f82e506e", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -2743,7 +2743,7 @@ }, "response": [ { - "id": "5eca592a-b3ef-4435-83bb-9bf05c0b3eb2", + "id": "3ac822b3-4387-4ce0-97d7-8584ef67c8d5", "name": "List of Entitlements", "originalRequest": { "url": { @@ -2829,12 +2829,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"veniam_3\": \"aliqua dolore\",\n \"culpa_bd\": 78267857.05016205,\n \"sed_be\": 17620284\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"sintf\": -19630710,\n \"sunt_d\": \"ullamco commodo consectetur tempor sit\",\n \"enimd\": -90129768\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"cillum129\": \"dolore\",\n \"ea_13\": -51899720,\n \"ut_e37\": false,\n \"aliquipf3\": -50433480\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"occaecat_4\": \"magna adipisicing\",\n \"doloreb7\": -67324192,\n \"ead50\": -91382880,\n \"id2_d\": false\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16c93266-df34-40a2-8f5b-2872601db9e0", + "id": "fc7ddf20-b8a9-4e77-81ad-f6266676aa27", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2920,12 +2920,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8206c7a-40af-4650-b777-cce163c84a58", + "id": "0aae4bdb-0d5a-4200-bad3-256d2d29baec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -3016,7 +3016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8bd45fb-3034-475c-85ef-312361e0557c", + "id": "d51f577e-9696-47ab-978c-1b9bf67b625d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3102,12 +3102,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c89db6be-c9e9-4139-b728-d4c41d993626", + "id": "82f1fcf5-a1f8-49cc-84db-bed1d4472499", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3198,7 +3198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a2ee636-182a-4390-bf13-3537f34fdf89", + "id": "c9dde326-cab3-410c-a998-b42f03665e6d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3284,7 +3284,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3301,7 +3301,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 IdentityNow, 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, IdentityNow 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 IdentityNow, 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, IdentityNow grants or revokes access, based on the request.\nIf multiple reviewers are required, IdentityNow 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": "c417ced0-76c3-4c3b-930d-48c8ecb1df97", + "id": "4e56296e-fb48-4ca3-ae1a-7d26763967e9", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -3386,7 +3386,7 @@ }, "response": [ { - "id": "6a7bbdec-fee8-4fd8-810f-5446845337c7", + "id": "6e05ae5c-f5c1-4184-ac32-c9eba13716e3", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -3480,12 +3480,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"requester\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"actionInProcess\": \"REJECTED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"ut_9a\": \"\",\n \"reprehenderit30a\": \"\",\n \"eiusmoda\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"requester\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ENTITLEMENT\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"MANUAL_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"actionInProcess\": \"REJECTED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"cillum_344\": \"\",\n \"irure_d\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"requester\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"actionInProcess\": \"FORWARDED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"ut3ea\": \"\",\n \"culpa_0\": \"\",\n \"adipisicingd\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"requester\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"actionInProcess\": \"FORWARDED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"exercitation_1a9\": \"\",\n \"minim52\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a2123b1e-73f3-4d19-bfee-ad399f4008a4", + "id": "982ae7c6-a419-43ad-bdb6-9057479da17a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -3584,7 +3584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e9f795d-0007-4914-a6f3-325d92da7209", + "id": "1c98493b-87ff-41ee-a55d-a4b256681ebf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3678,12 +3678,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "503ba495-d853-440b-88eb-f98e9276aad2", + "id": "f5a6d1a1-92ff-4dc7-b814-0a718ba29946", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3782,7 +3782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "509e3354-4d93-4044-b1cb-80f2edb4000d", + "id": "ebb1c2ea-ba3d-49e6-9c11-c11e41d34add", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3876,7 +3876,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3887,7 +3887,7 @@ } }, { - "id": "a8a70aee-a766-4559-9007-0f0b84ef8cd2", + "id": "252bc414-6918-4ef9-acdd-21f55e3c711d", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -3972,7 +3972,7 @@ }, "response": [ { - "id": "785372b0-9df3-4ad4-91ea-8834ad45222c", + "id": "dddc6fbd-9ae6-4114-8cdd-f73cb583a31a", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -4066,12 +4066,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"reviewerComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"MANUAL_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"state\": \"APPROVED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"cupidatat_8\": \"\",\n \"fugiat7\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"reviewerComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"state\": \"REJECTED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"eu87e\": \"\",\n \"in5\": \"\",\n \"culpa7dc\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"reviewerComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"MANUAL_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"state\": \"APPROVED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"cupidatat_7\": \"\",\n \"esseebf\": \"\",\n \"exercitation4_\": \"\",\n \"in_1\": \"\",\n \"aliquip_5a\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedObject\": {\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"reviewerComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"state\": \"APPROVED\",\n \"removeDate\": \"\",\n \"removeDateUpdateRequested\": \"\",\n \"currentRemoveDate\": \"\",\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"culpab\": \"\",\n \"pariatur_0d2\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aa13517e-ab45-472a-8acd-2ba0a2b004bd", + "id": "890ba0d7-7c5b-4309-892d-3dbc06b485e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4170,7 +4170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5974b57-6aab-4c00-bb1c-a9c2d2305a05", + "id": "d0172259-0330-490d-a5e8-ee42e4f177b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4264,12 +4264,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ac35b946-f617-4fc1-a241-1ca833f0adbd", + "id": "69e0895c-71ba-4280-9f02-d76440a7b33c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4368,7 +4368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90f84656-15e0-466d-ba3b-056d3ff5ec14", + "id": "dcbd6fef-7ccf-434f-b380-d4d97f7e30b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4462,7 +4462,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4473,7 +4473,7 @@ } }, { - "id": "594e75eb-aada-4daf-849c-a913aaacee29", + "id": "61945dac-dcf2-4790-82c0-60c71f4e61f6", "name": "Approves an access request approval.", "request": { "name": "Approves an access request approval.", @@ -4528,7 +4528,7 @@ }, "response": [ { - "id": "59551c8a-1f44-44a1-a1e1-fba64594e6af", + "id": "c5ff1423-bfba-4f2b-8103-221d2f0ffd68", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -4586,7 +4586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "331d90fd-9395-4ea5-85b3-7cff4a550ec0", + "id": "6cd121b8-b9a8-461c-82d0-fe0cf291fd98", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4644,7 +4644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9645cbba-2524-478a-8aad-791d1d21f676", + "id": "176944bb-d57c-484d-93bd-ca869e419a60", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4697,12 +4697,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b209528-aa52-4b09-9ad8-22afe3f7c84a", + "id": "f03e4ce1-4fd3-43cf-a8f8-0392a2d61601", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -4755,12 +4755,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "645be0f1-1f08-466d-b04c-3c22f14796ec", + "id": "5ae7f39c-9309-429c-9495-7707e66074db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4818,7 +4818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53f9b2b7-58df-4ceb-b122-1af247abce4b", + "id": "2bf314c1-97eb-4c38-b628-60419a6355b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4871,7 +4871,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4882,7 +4882,7 @@ } }, { - "id": "c5b17f75-b35b-4660-8afb-e35318187deb", + "id": "37a256a7-348a-4089-b5cb-14aee48e5bb7", "name": "Rejects an access request approval.", "request": { "name": "Rejects an access request approval.", @@ -4937,7 +4937,7 @@ }, "response": [ { - "id": "5159d09e-7982-422a-8f06-a3b281223f71", + "id": "7c854cec-0ffb-4a08-950e-7beb707f5dd4", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -4995,7 +4995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a35455b5-848f-403b-b5e0-9ee161188c43", + "id": "ca65734c-69f4-441b-8012-925cae36e692", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5048,12 +5048,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db0316d4-ce7a-4a26-a733-4e7f2730cb09", + "id": "3e0c06a2-a349-44c4-bd29-5343a5b525c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5111,7 +5111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d28d1161-7647-4876-a965-ea7de12b80f4", + "id": "66c85614-a513-4ce6-ad8d-096e23be098c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5164,12 +5164,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "685f5bdd-2af2-444e-8efe-5b8b5320ffb6", + "id": "524a6e8a-f447-40a9-a958-67302d6cfdd2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -5222,12 +5222,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9cd2d43a-6734-4a34-82b7-76d5714fda14", + "id": "c9b18368-4b25-45c5-8f2f-9aab8c7792e7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5285,7 +5285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e47c0b60-577b-4472-8efa-a734f5025e06", + "id": "a1c13279-8e58-44a3-ab0c-32ee087dfe4c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5338,7 +5338,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -5349,7 +5349,7 @@ } }, { - "id": "0f560f7f-c7e2-4118-8266-21c345f07579", + "id": "a42e85bb-7662-4c14-871e-091bae0bf43d", "name": "Forwards an access request approval to a new owner.", "request": { "name": "Forwards an access request approval to a new owner.", @@ -5404,7 +5404,7 @@ }, "response": [ { - "id": "0e8d5231-bb9c-47c6-b7da-a909c357d3b8", + "id": "a6d9843c-b9c2-4b81-9746-18c3b300a5c8", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5462,7 +5462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba11c47f-942c-4a52-b54e-8c7d0bd35395", + "id": "5732830d-1ec1-4260-8641-f8a0e8502708", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5515,12 +5515,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5511324a-f28b-40ed-aa12-01fa444ae56f", + "id": "77ac206f-2cbf-482d-9729-bb97ec5bf8b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5578,7 +5578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8224b731-c65a-4d97-8c8e-e17a2fbbe1c3", + "id": "87598a93-a67a-47c5-ad2e-754a8f166111", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5631,12 +5631,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "618da484-e832-439a-9e41-68c291bed11c", + "id": "b02e534e-a7cc-4273-9635-82698328f0cc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -5689,12 +5689,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad5a7f0b-b760-4771-9e69-256070bccd81", + "id": "69891370-d545-4194-ab1f-16ab288f7088", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5752,7 +5752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5e4fd60-b064-443a-bc8f-abb526658653", + "id": "a0232738-e28e-4070-b86c-5185c4ce4a86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5805,7 +5805,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -5816,7 +5816,7 @@ } }, { - "id": "34a98153-e132-4c7d-a61c-526edf170dd8", + "id": "b4eea3be-9729-4ba6-9cf1-0f998e66be2c", "name": "Get the number of pending, approved and rejected access requests approvals", "request": { "name": "Get the number of pending, approved and rejected access requests approvals", @@ -5865,7 +5865,7 @@ }, "response": [ { - "id": "6abe8fc2-27eb-4c16-97e2-44a8be3d5514", + "id": "00852282-0321-40cf-9181-9c59c7e7c572", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -5928,7 +5928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b899e308-25b5-4ee8-a391-f9bb5eabd72f", + "id": "a79753c1-733a-4e21-85dd-e6c77b66efaa", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -5986,12 +5986,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7bffed36-0897-40ed-8aaa-1483c1905ef1", + "id": "f99aeb19-f745-4787-ac1a-fb9b3339aaee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6054,7 +6054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c0cbff1-1023-4064-9160-3b4c8ed4be1c", + "id": "2dbbfc26-5720-40da-a97e-94a6be5adab8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6112,12 +6112,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d9fa8cb8-015b-4e29-9123-b530ac19dfca", + "id": "89b0f0a2-b63a-4133-a930-1fdf7d13b21e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6180,7 +6180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea9371ad-b60e-483b-b988-c39754328dcf", + "id": "ddcde0c3-5d9e-4eee-87bf-2b2794efd835", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6238,7 +6238,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -6255,7 +6255,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\nIdentityNow'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 IdentityNow, 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 IdentityNow 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": "7f1722e3-fbb7-4911-beb6-2c9f555bec04", + "id": "30c8e579-818f-434e-82fe-627f2ba5774b", "name": "Submit an Access Request", "request": { "name": "Submit an Access Request", @@ -6286,7 +6286,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"in_95\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"sunt_cb3\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"enim_14\": \"\",\n \"doloree\": \"\",\n \"utdaf\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Duis_2_f\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"anim_e\": \"\",\n \"magnadc\": \"\",\n \"sint_b\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"esse55\": \"\",\n \"autee4\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6297,7 +6297,7 @@ }, "response": [ { - "id": "007ac928-2a74-44e0-bad1-8458025d00cd", + "id": "02e7f541-4136-42d3-bffa-532857f84065", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6331,7 +6331,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"in_95\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"sunt_cb3\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"enim_14\": \"\",\n \"doloree\": \"\",\n \"utdaf\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Duis_2_f\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"anim_e\": \"\",\n \"magnadc\": \"\",\n \"sint_b\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"esse55\": \"\",\n \"autee4\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6353,7 +6353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8deadfde-06fd-492c-92af-ecd39e002e5b", + "id": "43f79f06-2aba-4a1b-ab08-d8d4567771b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6387,7 +6387,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"in_95\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"sunt_cb3\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"enim_14\": \"\",\n \"doloree\": \"\",\n \"utdaf\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Duis_2_f\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"anim_e\": \"\",\n \"magnadc\": \"\",\n \"sint_b\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"esse55\": \"\",\n \"autee4\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6404,12 +6404,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0258f305-c3e6-4c3c-827b-04947c279b20", + "id": "852219c2-5e03-49eb-889c-0587f4b3176a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6443,7 +6443,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"in_95\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"sunt_cb3\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"enim_14\": \"\",\n \"doloree\": \"\",\n \"utdaf\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Duis_2_f\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"anim_e\": \"\",\n \"magnadc\": \"\",\n \"sint_b\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"esse55\": \"\",\n \"autee4\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6465,7 +6465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5012912-47fb-4a29-aaac-69345c0408dd", + "id": "8c467ee5-bd0a-4004-b973-8940aaafe660", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6499,7 +6499,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"in_95\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"sunt_cb3\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"enim_14\": \"\",\n \"doloree\": \"\",\n \"utdaf\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Duis_2_f\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"anim_e\": \"\",\n \"magnadc\": \"\",\n \"sint_b\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"esse55\": \"\",\n \"autee4\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6516,12 +6516,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0f6926ca-9bbe-47d7-8ad7-2edd565efa37", + "id": "720853bd-9e52-4cc1-9ee1-d26d121eab20", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6555,7 +6555,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"in_95\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"sunt_cb3\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"enim_14\": \"\",\n \"doloree\": \"\",\n \"utdaf\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Duis_2_f\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"anim_e\": \"\",\n \"magnadc\": \"\",\n \"sint_b\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"esse55\": \"\",\n \"autee4\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6577,7 +6577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a251f036-99a6-4e08-b7cc-dab8366cf0a6", + "id": "ad5cd8f9-c802-4c72-a37d-e1214eb6fe76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6611,7 +6611,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"in_95\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"sunt_cb3\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"enim_14\": \"\",\n \"doloree\": \"\",\n \"utdaf\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Duis_2_f\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"anim_e\": \"\",\n \"magnadc\": \"\",\n \"sint_b\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"GRANT_ACCESS\",\n \"clientMetadata\": {\n \"esse55\": \"\",\n \"autee4\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6628,7 +6628,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -6639,7 +6639,7 @@ } }, { - "id": "4c6c474a-2f3e-4ccb-a417-1a093c1f6605", + "id": "7deda64b-c548-4323-9ea6-df51764d2e96", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -6682,7 +6682,7 @@ }, "response": [ { - "id": "3458b84c-c4a8-4105-a3c7-28eb9fd05b81", + "id": "42680788-2b68-4f5e-b2a1-2350f1da9d02", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6739,7 +6739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12525733-e6f2-4bf9-8638-42de87b526ed", + "id": "d0e708b8-828c-484b-831c-35fb94b9caaf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6791,12 +6791,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "59cffe4e-338e-4d84-8b64-7cb194aa6a04", + "id": "40960531-07c5-4d16-b09e-af51fc0047e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6853,7 +6853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac0cf02e-920d-4c76-ba29-13ae5e4912c7", + "id": "7df29b49-2abe-414f-af6d-617980cfb7c8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6905,12 +6905,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f4d57b91-214b-4000-bfaf-92242cbf66bb", + "id": "67c7b2b7-83f8-4b25-9ba5-6bf603b360d8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -6962,12 +6962,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "28ccd07a-3f83-4a78-a5de-d0ec607cb2f9", + "id": "609462d0-fad8-452c-93e7-f6610530cf3e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7024,7 +7024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93ab59ab-f1c3-4604-8616-26509dfbdbbd", + "id": "4c0918ba-90c5-49fa-86a0-0746869b4236", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7076,7 +7076,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -7087,7 +7087,7 @@ } }, { - "id": "7edc4bc8-0834-4ef1-83cc-51224bf88d9a", + "id": "1c353ff2-a7ae-4bbc-b6aa-9cbdb440a361", "name": "Close Access Request", "request": { "name": "Close Access Request", @@ -7130,7 +7130,7 @@ }, "response": [ { - "id": "998ab07f-c345-4611-9c27-0da9bf2ae720", + "id": "0ef075ac-9927-46f4-81bd-07fd87ec9240", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7187,7 +7187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c36d1a24-8f1f-4df6-8853-760ee8a6d465", + "id": "310cd2f5-e8d7-4c49-b83e-9e5a8ecb2598", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7239,12 +7239,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a4ac4ed-ad6a-4ed7-9ae6-1045a5abe3bc", + "id": "4269924b-c043-4be0-9033-b8dff3806dff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7301,7 +7301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5294c889-d6c2-492a-be3e-586c2b1c659d", + "id": "fe6736c1-e9cb-4728-8c2c-19c5ae7c3422", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7353,12 +7353,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f7da51c-24c5-4dda-a36a-03d6c2223a21", + "id": "2c7db92b-3145-4df8-b95c-8559b3a2903a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7415,7 +7415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7040a7b-8eb2-40df-8939-fd5875233b91", + "id": "d16639ea-e72b-41f5-8136-a74f926bf14d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7467,7 +7467,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -7478,7 +7478,7 @@ } }, { - "id": "b88702a6-2213-40c9-b0b5-7ad7b86cec0e", + "id": "9a5b1b8b-9811-4c62-9c30-9c1cff973d66", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -7507,7 +7507,7 @@ }, "response": [ { - "id": "e167b05b-c431-405d-894f-9d725706e2c1", + "id": "979ccd85-2e2f-464f-8071-6ce400101c6a", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -7550,7 +7550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "973464b2-6782-453f-a4c0-649ce1989c85", + "id": "bcaa5fb6-8735-4789-989a-50a1be911f9a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7588,12 +7588,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c61ca01f-3235-4ccf-80f2-7375c1347e44", + "id": "8d522737-686c-4e5d-9cd9-7c83281eb44a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7636,7 +7636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39b3d18e-1308-4fa3-885e-8628468a0956", + "id": "18451efe-cd5b-4e15-a100-8526bc259a7e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7674,12 +7674,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb211268-0d0c-404a-94cf-1ccb4a7e4e5d", + "id": "e96978fb-0535-4386-86e5-45cde6153c25", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7722,7 +7722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e50df97-57dc-4cbf-8208-be52eee0bdf6", + "id": "5fdae21f-0516-4d56-9ee8-c7361bc411c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7760,7 +7760,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -7771,7 +7771,7 @@ } }, { - "id": "ddf0f2ab-48a6-4a77-afdd-e639117de423", + "id": "c3b50b43-7398-4a1d-8c87-7b3aed673adf", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -7813,7 +7813,7 @@ }, "response": [ { - "id": "1e06a02c-8cd4-4f4f-91fc-b1e99c8e8ffb", + "id": "9e5bb53a-41cb-4240-b7a5-abaeaf64d25e", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -7869,7 +7869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c7b22aa-d983-440e-9389-6d6f846ad0d1", + "id": "4aef6d98-7d74-4126-85a2-906efc9659a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7920,12 +7920,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b9563f0-5540-4860-bf3d-a3991a230dce", + "id": "d27df721-5a58-40d5-ba90-25f7e4719deb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7981,7 +7981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e85ee1b-79df-422c-aed6-b145d0f5c726", + "id": "e31692f2-761b-4001-9967-620003cda911", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8032,12 +8032,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2cea1ae5-a266-497d-983c-f4c60c7d59c1", + "id": "b41fbb67-6fce-44ac-999d-7674ebe6ae2e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8093,7 +8093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6cf35d1-cb1b-4ef2-a397-7ccb8ed1397b", + "id": "91f55176-1a96-4616-9c84-401a3bfaa6c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8144,7 +8144,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8155,7 +8155,7 @@ } }, { - "id": "ad58e7ee-8bde-46d6-9763-0f1801d70fe7", + "id": "eb283775-2fb1-47ef-8f4b-3ae77a0f8457", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -8257,7 +8257,7 @@ }, "response": [ { - "id": "c7328b2f-7650-4834-a4c4-f065382c7bb8", + "id": "752f99e6-28ee-42b7-addb-7f2ed80ae6a3", "name": "List of requested item status.", "originalRequest": { "url": { @@ -8368,12 +8368,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"type\": \"ROLE\",\n \"cancelledRequestDetails\": {\n \"comment\": \"\",\n \"owner\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n },\n \"errorMessages\": [\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n ],\n \"state\": \"PROVISIONING_VERIFICATION_PENDING\",\n \"approvalDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"EXPIRED\",\n \"scheme\": \"ENTITLEMENT_OWNER\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"REJECTED\",\n \"scheme\": \"GOVERNANCE_GROUP\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n }\n ],\n \"manualWorkItemDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"APPROVED\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n }\n ]\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"APPROVED\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ]\n }\n ],\n \"accountActivityItemId\": \"\",\n \"requestType\": \"GRANT_ACCESS\",\n \"modified\": \"\",\n \"created\": \"\",\n \"requester\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"nonb\": \"\",\n \"proident065\": \"\",\n \"minimeef\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n },\n \"provisioningDetails\": {\n \"orderedSubPhaseReferences\": \"\"\n },\n \"preApprovalTriggerDetails\": {\n \"comment\": \"\",\n \"reviewer\": \"\",\n \"decision\": \"REJECTED\"\n },\n \"accessRequestPhases\": [\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"EXECUTING\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"\"\n },\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"CANCELLED\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"\"\n }\n ],\n \"description\": \"\",\n \"removeDate\": \"\",\n \"cancelable\": \"\",\n \"accessRequestId\": \"\",\n \"clientMetadata\": {\n \"ut_0a\": \"\",\n \"mollitb07\": \"\",\n \"reprehenderit_4\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"type\": \"ROLE\",\n \"cancelledRequestDetails\": {\n \"comment\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n },\n \"errorMessages\": [\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n ],\n \"state\": \"NOT_ALL_ITEMS_PROVISIONED\",\n \"approvalDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"ARCHIVED\",\n \"scheme\": \"MANAGER\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"ARCHIVED\",\n \"scheme\": \"MANAGER\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n }\n ],\n \"manualWorkItemDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"EXPIRED\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n }\n ]\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"APPROVED\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"MANUAL_REASSIGNMENT\"\n }\n ]\n }\n ],\n \"accountActivityItemId\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"modified\": \"\",\n \"created\": \"\",\n \"requester\": {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"in_eee\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n },\n \"provisioningDetails\": {\n \"orderedSubPhaseReferences\": \"\"\n },\n \"preApprovalTriggerDetails\": {\n \"comment\": \"\",\n \"reviewer\": \"\",\n \"decision\": \"REJECTED\"\n },\n \"accessRequestPhases\": [\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"PENDING\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"\"\n },\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"PENDING\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"\"\n }\n ],\n \"description\": \"\",\n \"removeDate\": \"\",\n \"cancelable\": \"\",\n \"accessRequestId\": \"\",\n \"clientMetadata\": {\n \"uta9\": \"\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"cancelledRequestDetails\": {\n \"comment\": \"\",\n \"owner\": {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n },\n \"errorMessages\": [\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n ],\n \"state\": \"REJECTED\",\n \"approvalDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"APPROVED\",\n \"scheme\": \"APP_OWNER\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"CANCELLED\",\n \"scheme\": \"MANAGER\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n }\n ],\n \"manualWorkItemDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"ARCHIVED\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ]\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"APPROVED\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ]\n }\n ],\n \"accountActivityItemId\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"modified\": \"\",\n \"created\": \"\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"tempor__4\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n },\n \"provisioningDetails\": {\n \"orderedSubPhaseReferences\": \"\"\n },\n \"preApprovalTriggerDetails\": {\n \"comment\": \"\",\n \"reviewer\": \"\",\n \"decision\": \"APPROVED\"\n },\n \"accessRequestPhases\": [\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"COMPLETED\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"\"\n },\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"COMPLETED\",\n \"result\": \"SUCCESSFUL\",\n \"phaseReference\": \"\"\n }\n ],\n \"description\": \"\",\n \"removeDate\": \"\",\n \"cancelable\": \"\",\n \"accessRequestId\": \"\",\n \"clientMetadata\": {\n \"nisi_da4\": \"\",\n \"dolor_7\": \"\",\n \"occaecat_d\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"type\": \"ROLE\",\n \"cancelledRequestDetails\": {\n \"comment\": \"\",\n \"owner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n },\n \"errorMessages\": [\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n ],\n \"state\": \"CANCELLED\",\n \"approvalDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"EXPIRED\",\n \"scheme\": \"ACCESS_PROFILE_OWNER\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"APPROVED\",\n \"scheme\": \"ROLE_OWNER\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"comment\": \"\",\n \"removeDate\": \"\"\n }\n ],\n \"manualWorkItemDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"ARCHIVED\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"MANUAL_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n }\n ]\n },\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"PENDING\",\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"MANUAL_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n }\n ]\n }\n ],\n \"accountActivityItemId\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"modified\": \"\",\n \"created\": \"\",\n \"requester\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"sodViolationContext\": {\n \"state\": \"ERROR\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"occaecata\": \"\",\n \"dolor_1\": \"\",\n \"in9\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n },\n \"provisioningDetails\": {\n \"orderedSubPhaseReferences\": \"\"\n },\n \"preApprovalTriggerDetails\": {\n \"comment\": \"\",\n \"reviewer\": \"\",\n \"decision\": \"REJECTED\"\n },\n \"accessRequestPhases\": [\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"PENDING\",\n \"result\": \"FAILED\",\n \"phaseReference\": \"\"\n },\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"CANCELLED\",\n \"result\": \"FAILED\",\n \"phaseReference\": \"\"\n }\n ],\n \"description\": \"\",\n \"removeDate\": \"\",\n \"cancelable\": \"\",\n \"accessRequestId\": \"\",\n \"clientMetadata\": {\n \"ut_7\": \"\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f0064f18-a00b-4a05-97a0-3702ca70c92a", + "id": "c86950f5-49aa-4cc7-993a-f820b8932450", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8484,12 +8484,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8de68392-5442-4c4d-bc17-dec8f1552b98", + "id": "d2c4066a-0f78-4fc8-a71a-73e3282474c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8605,7 +8605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcd59456-fa1f-4366-beca-4e6120bf75a8", + "id": "715f478d-f1c1-440a-b123-0c1635fd6f7d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8716,12 +8716,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b89991f-7606-47a6-b86b-2d644f917c76", + "id": "32f45f34-663b-428f-9a5f-75501b0f916d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8837,7 +8837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f3b365b-5b43-4535-9771-8ff2deb9e94b", + "id": "993f20b7-16c8-4a42-905f-847947ffda55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8948,7 +8948,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8965,7 +8965,7 @@ "description": "Use this API to implement account activity tracking functionality.\nWith this functionality in place, users can track source account activity in IdentityNow, 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 IdentityNow'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 IdentityNow completes on source accounts. Users can search in IdentityNow 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.\nIdentityNow 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 IdentityNow 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": "bb8962c5-0bd5-4a0a-b314-07f598a5ed68", + "id": "2d0e5189-9d0d-4d2b-bcc5-ef81643d7290", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -9076,7 +9076,7 @@ }, "response": [ { - "id": "07e6f8a8-95c5-4f44-8c74-cb2aac431d9c", + "id": "b47f278d-889f-42ff-8f10-a34c7cbd4af0", "name": "List of account activities", "originalRequest": { "url": { @@ -9196,12 +9196,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"FAILURE\",\n \"type\": \"\",\n \"requesterIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"targetIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"errors\": [\n \"\",\n \"\"\n ],\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"items\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"CANCELED\",\n \"provisioningStatus\": \"RETRY\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"UNLOCK\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"amet_775\": \"\",\n \"dolor_0\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"FINISHED\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"MODIFY\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"adc\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"TERMINATED\",\n \"clientMetadata\": {\n \"fugiatde\": \"\",\n \"sint9de\": \"\",\n \"in_e0f\": \"\",\n \"nulla_f9\": \"\",\n \"ex99a\": \"\"\n },\n \"cancelable\": \"\",\n \"cancelComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"PENDING\",\n \"type\": \"\",\n \"requesterIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"targetIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"errors\": [\n \"\",\n \"\"\n ],\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"items\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"COMMITED\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"DISABLE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"irureef\": \"\",\n \"veniam___\": \"\",\n \"Ut_24\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"FAILED\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"MODIFY\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"eiusmod7\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"consequat75\": \"\"\n },\n \"cancelable\": \"\",\n \"cancelComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"PENDING\",\n \"type\": \"\",\n \"requesterIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"targetIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"errors\": [\n \"\",\n \"\"\n ],\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"items\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"qui4\": \"\",\n \"in0\": \"\",\n \"tempor_f\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"EXPIRED\",\n \"provisioningStatus\": \"FAILED\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"ENABLE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"cillume\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"EXECUTING\",\n \"clientMetadata\": {\n \"eiusmod0_\": \"\",\n \"laborisbd6\": \"\"\n },\n \"cancelable\": \"\",\n \"cancelComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"PENDING\",\n \"type\": \"\",\n \"requesterIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"targetIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"errors\": [\n \"\",\n \"\"\n ],\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"items\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"RETURNED\",\n \"provisioningStatus\": \"RETRY\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"MODIFY\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"mollit_2e\": \"\",\n \"fugiatdee\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"UNVERIFIABLE\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"DELETE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"dolor_a\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"TERMINATED\",\n \"clientMetadata\": {\n \"sed_0\": \"\"\n },\n \"cancelable\": \"\",\n \"cancelComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c611032d-dfce-42f7-bba0-d77995ea2c6b", + "id": "22bb7941-888d-4b26-b8d7-7683e897b1be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9321,12 +9321,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7aba00cf-015f-436f-b90b-e94afb25e3a3", + "id": "b9387bfa-446c-46fb-a684-f1c01b76e22f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9451,7 +9451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f99f5c62-6dd2-4063-a471-2b99308c8528", + "id": "ea56af37-711f-4943-8805-3000b904ea68", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9571,12 +9571,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6aec4f0a-1083-4007-830f-ea47ec5227a8", + "id": "f0569733-a229-4cc0-9edc-7dde294b1eb1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9701,7 +9701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9faac7c7-c7b5-491d-a168-fd1ba6ee7462", + "id": "08df5581-455c-4086-80ba-3fe75d3bf13d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9821,7 +9821,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -9832,7 +9832,7 @@ } }, { - "id": "0180a7da-2a0e-4cd9-a618-0f05943705e1", + "id": "a37f7021-97a9-4e3c-b626-802716d93712", "name": "Get Account Activity", "request": { "name": "Get Account Activity", @@ -9873,7 +9873,7 @@ }, "response": [ { - "id": "99f07387-4ad4-4ff9-8380-5f70c432aefe", + "id": "0f8d3175-3682-4800-9037-0c0804497661", "name": "An account activity object", "originalRequest": { "url": { @@ -9912,12 +9912,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"INCOMPLETE\",\n \"type\": \"\",\n \"requesterIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"targetIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"errors\": [\n \"\",\n \"\"\n ],\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"items\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"RETURNED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"ENABLE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"nostrud_87\": \"\",\n \"mollit6c\": \"\",\n \"dolora1\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"UNLOCK\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"in2f\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"TERMINATED\",\n \"clientMetadata\": {\n \"Excepteure\": \"\",\n \"dof28\": \"\"\n },\n \"cancelable\": \"\",\n \"cancelComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n }\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"FAILURE\",\n \"type\": \"\",\n \"requesterIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"targetIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"errors\": [\n \"\",\n \"\"\n ],\n \"warnings\": [\n \"\",\n \"\"\n ],\n \"items\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"provisioningStatus\": \"FAILED\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"DELETE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"quia0\": \"\",\n \"id_70\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"COMMITED\",\n \"requesterComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"\",\n \"name\": \"\",\n \"identityId\": \"\",\n \"completed\": \"\"\n },\n \"reviewerComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n },\n \"operation\": \"LOCK\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"in_1c\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"TERMINATED\",\n \"clientMetadata\": {\n \"inf\": \"\",\n \"in8\": \"\"\n },\n \"cancelable\": \"\",\n \"cancelComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93ddcee3-733a-4618-bbe5-0bcfd686c397", + "id": "1ae6a716-c8a7-4838-bec0-fc7ad0d86163", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9956,12 +9956,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "295e9297-1aff-4d11-af8a-e67b682398db", + "id": "9d74b5b4-d601-435e-a49b-21beaaf261bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10005,7 +10005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32c096a4-bc2d-4974-bc0c-7d77039566ca", + "id": "1416b91d-a6ae-4e24-a54c-03663b740dd6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10044,12 +10044,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "448e8fc2-9a88-4fb5-988a-e549658ec1b3", + "id": "83ce88cb-8fae-488e-8e9b-4eb569812da8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -10088,12 +10088,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "087300c0-bd61-4608-866f-a8559cfc6c28", + "id": "80c046dd-a7fa-4bd3-9469-f2fbb1b2eace", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10137,7 +10137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "785874ed-8443-4598-87b0-d73c549bde91", + "id": "366d1834-3bdd-4992-b104-6385cd46c336", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10176,7 +10176,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -10193,7 +10193,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 IdentityNow uses to gather and load account data from a source into IdentityNow.\n\nWhenever IdentityNow 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": "5fd1dead-ed72-4939-bb62-51fb231a3b5c", + "id": "c19afcc4-21c0-4a07-9e9b-f013b21ce904", "name": "In-progress Account Aggregation status", "request": { "name": "In-progress Account Aggregation status", @@ -10235,7 +10235,7 @@ }, "response": [ { - "id": "9d731c63-5924-423b-a27a-b2c17038e905", + "id": "001032d6-5651-43fc-838d-d82faf7e874d", "name": "An account aggregation status object", "originalRequest": { "url": { @@ -10280,7 +10280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "647d5a88-523f-44b8-951a-0f823e2b9625", + "id": "3fa270a4-5710-4bba-9d65-bce9d92ba392", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10325,7 +10325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "551c468f-a464-4bdf-8715-fc11d223dcfd", + "id": "eb757856-7517-4b6f-99e1-011dd6472df9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10365,12 +10365,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b9781f06-1bdc-48c4-96d4-28e24b99df39", + "id": "6e1d78a1-5841-4dd7-a956-062aef3a78d6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -10410,12 +10410,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83dd18fe-a26c-4e1b-abc1-ea4089ddfa87", + "id": "ce717a2f-ba40-4c93-b1c1-14fe864e80c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10460,7 +10460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb759650-f043-4e22-84ce-050ea5f928da", + "id": "d20ccc9d-2be1-41db-b2da-06c70785dbc4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10500,7 +10500,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -10517,7 +10517,7 @@ "description": "Use this API to implement and customize account functionality.\nWith this functionality in place, administrators can manage users' access across sources in IdentityNow.\n\nIn IdentityNow, 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. IdentityNow loads accounts through the creation of sources in IdentityNow.\n\nAdministrators can correlate users' identities with the users' accounts on the different sources they use.\nThis allows IdentityNow 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 IdentityNow, 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 IdentityNow. 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": "eeee7448-8f32-4ab5-b569-2e8469135416", + "id": "90158510-6ebd-4bdb-9d6e-21ab721210db", "name": "Accounts List", "request": { "name": "Accounts List", @@ -10540,7 +10540,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -10601,7 +10601,7 @@ }, "response": [ { - "id": "3ecf95de-a4f0-4ee7-b83e-7bdb638a4e48", + "id": "68c5ed0e-b08a-490d-ad35-e9b10455707b", "name": "List of account objects", "originalRequest": { "url": { @@ -10619,7 +10619,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -10694,12 +10694,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"uuid\": \"\",\n \"nativeIdentity\": \"\",\n \"description\": \"\",\n \"disabled\": \"\",\n \"locked\": \"\",\n \"manuallyCorrelated\": \"\",\n \"hasEntitlements\": \"\",\n \"sourceId\": \"\",\n \"sourceName\": \"\",\n \"identityId\": \"\",\n \"attributes\": {\n \"incididunt_cb0\": -54717889.412341766\n }\n },\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"uuid\": \"\",\n \"nativeIdentity\": \"\",\n \"description\": \"\",\n \"disabled\": \"\",\n \"locked\": \"\",\n \"manuallyCorrelated\": \"\",\n \"hasEntitlements\": \"\",\n \"sourceId\": \"\",\n \"sourceName\": \"\",\n \"identityId\": \"\",\n \"attributes\": {\n \"sunt_46\": true,\n \"velit_2de\": false,\n \"in_4\": -93861507\n }\n }\n]", + "body": "[\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"uuid\": \"\",\n \"nativeIdentity\": \"\",\n \"description\": \"\",\n \"disabled\": \"\",\n \"locked\": \"\",\n \"manuallyCorrelated\": \"\",\n \"hasEntitlements\": \"\",\n \"sourceId\": \"\",\n \"sourceName\": \"\",\n \"identityId\": \"\",\n \"attributes\": {\n \"sint_1b\": true,\n \"laborum_02\": -48666598.96664158\n }\n },\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"uuid\": \"\",\n \"nativeIdentity\": \"\",\n \"description\": \"\",\n \"disabled\": \"\",\n \"locked\": \"\",\n \"manuallyCorrelated\": \"\",\n \"hasEntitlements\": \"\",\n \"sourceId\": \"\",\n \"sourceName\": \"\",\n \"identityId\": \"\",\n \"attributes\": {\n \"est289\": -59497841.467787005,\n \"sit4\": \"deserunt elit enim ex\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5fd91435-9710-49a0-8196-92a9fb5b50d3", + "id": "1846c5bb-9169-470e-b879-4df8e847a91b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10717,7 +10717,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -10792,12 +10792,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c2f79d85-f647-4b11-b6e6-640a4c0e390e", + "id": "24ec6c26-dd88-42fd-80a5-2390dd83aade", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10815,7 +10815,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -10895,7 +10895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5b1c8d3-d081-4f19-b811-46285c4aae84", + "id": "c21080f8-aad0-4f1e-a99b-41490826ecbc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10913,7 +10913,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -10988,12 +10988,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d82960ba-b87d-4ec2-b045-7efcc0e13941", + "id": "f4024f5d-e400-423d-a7f7-62362c6451ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11011,7 +11011,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -11091,7 +11091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "243efe17-434f-4ce5-9b83-8a4ae15cb4d4", + "id": "e5aadb0e-fe2a-4e43-b043-0c5aef11ed8d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11109,7 +11109,7 @@ "type": "text/plain" }, "key": "detailLevel", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -11184,7 +11184,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -11195,7 +11195,7 @@ } }, { - "id": "4efdf3a6-9b5b-4b06-a3c7-773057e74350", + "id": "d8d5e31f-c701-4f56-aec3-e339042c4458", "name": "Create Account", "request": { "name": "Create Account", @@ -11237,7 +11237,7 @@ }, "response": [ { - "id": "ecb2bc6e-c5cf-4616-8d9f-90424202674f", + "id": "f81224de-a336-44d8-a011-d5502cb1d764", "name": "Async task details", "originalRequest": { "url": { @@ -11293,7 +11293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0327f226-5247-4274-abb5-c2534bb1c92e", + "id": "44d7c2f9-d283-49f5-92b1-0076c9567726", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11344,12 +11344,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26b9a9a2-99d5-419a-bfac-153afdccc755", + "id": "2df9cee8-713b-4394-8f5b-2c6edbbd0913", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11405,7 +11405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e668365-7e0b-4a9a-86d8-798ba8cfdb85", + "id": "58311f88-886c-4864-807b-046889311f33", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11456,12 +11456,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "45f1fca4-578c-424b-9683-45738bff6876", + "id": "bfe003c4-64ed-4bb1-a4fd-88f907671759", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11517,7 +11517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1581fbd-136d-4d71-8b1c-60e01855f29e", + "id": "3145cded-d396-482f-8304-544668a0ea4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11568,7 +11568,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -11579,7 +11579,7 @@ } }, { - "id": "e9e10b8c-754d-40fd-8779-0345f19f04c2", + "id": "9ded1e92-f868-4a3f-82ce-8518741e3b03", "name": "Account Details", "request": { "name": "Account Details", @@ -11620,7 +11620,7 @@ }, "response": [ { - "id": "01a3c382-3432-414e-8093-0da1dc995314", + "id": "4aa3ae02-f3bc-48d1-b29d-8a045596aa44", "name": "An account object", "originalRequest": { "url": { @@ -11659,12 +11659,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"nulla4\": false\n },\n \"authoritative\": \"\",\n \"disabled\": \"\",\n \"hasEntitlements\": \"\",\n \"locked\": \"\",\n \"manuallyCorrelated\": \"\",\n \"name\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"sourceName\": \"\",\n \"systemAccount\": \"\",\n \"uncorrelated\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"identityId\": \"\",\n \"description\": \"\",\n \"uuid\": \"\"\n}", + "body": "{\n \"attributes\": {\n \"esse_12\": \"consequat in mollit\",\n \"Lorem_c5\": -27985668\n },\n \"authoritative\": \"\",\n \"disabled\": \"\",\n \"hasEntitlements\": \"\",\n \"locked\": \"\",\n \"manuallyCorrelated\": \"\",\n \"name\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"sourceName\": \"\",\n \"systemAccount\": \"\",\n \"uncorrelated\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"identityId\": \"\",\n \"description\": \"\",\n \"uuid\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0d6efcd9-abe9-4969-8c5b-3b70f683a0e4", + "id": "8bc3fdf5-db9b-4e0b-939c-82ff25b94fed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11703,12 +11703,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a4305b8-50de-4572-9856-7362fec4cb3c", + "id": "d78fdeac-0840-4c72-a17c-319e55612428", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11752,7 +11752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e0acc24-93c6-47d5-aeb3-bdb77074133a", + "id": "0ce12bb3-a89d-442e-9032-2bf89d403ad1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11791,12 +11791,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b94afc38-7b41-4073-a034-c64c464bf7ae", + "id": "a85baea5-b422-491a-9dad-d26220d43b99", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11835,12 +11835,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0f189ce4-5f5f-4956-893a-f0d165f76df8", + "id": "0f331271-24dc-42b8-bc23-7367578f9215", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11884,7 +11884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11699833-51e3-4c80-b4bc-46646f6d94ad", + "id": "7f7675df-36c0-48f5-b013-f3a44f28377a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11923,7 +11923,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -11934,7 +11934,7 @@ } }, { - "id": "bea565fb-446b-483f-bcf5-672eae945410", + "id": "dd9dca90-e5c5-4744-878e-980e9983c302", "name": "Update Account", "request": { "name": "Update Account", @@ -11988,7 +11988,7 @@ }, "response": [ { - "id": "c2906a76-50cd-4a2e-a255-9ca345f66414", + "id": "33f27e12-a4f4-4ba2-ac0e-f16c4794f0ab", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -12045,7 +12045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b80b102f-2b2d-4103-80bc-63b316e553c4", + "id": "dacfa0db-b09c-4027-9eb7-78d2ce836008", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12097,12 +12097,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "91b2215f-126e-4e30-ba20-5649f9e11c01", + "id": "52a6ef41-9e52-4191-bc8b-bdcdc15fbd29", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12159,7 +12159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46ca122e-af1d-4422-a1d8-e03adbc29a9a", + "id": "268522a9-1b61-43ad-b960-da69262084ed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12211,12 +12211,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ddc25d76-5865-4c9f-b7af-ff567ba9bdd4", + "id": "5946f9e5-b0ba-4480-ac0a-befe7f9772be", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -12268,12 +12268,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "edff05e1-4b62-4690-a10c-7ff5a86c94bd", + "id": "92d2cc95-47e8-4ab8-bddf-95d494ffef1c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12330,7 +12330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48bcb14c-38e2-4478-8ba7-5272bd156d02", + "id": "2713a61b-08d8-4b7a-a601-408cf102225d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12382,7 +12382,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -12393,7 +12393,7 @@ } }, { - "id": "4be0b4a8-c7bd-4ffa-ae7c-67c81fadb7a4", + "id": "0c304371-d0b0-4a3e-99f6-05547d0c9c70", "name": "Update Account", "request": { "name": "Update Account", @@ -12447,7 +12447,7 @@ }, "response": [ { - "id": "bdbe9986-160d-4a19-808b-191cf44ece72", + "id": "50351c5b-54b5-4999-b1a8-612aa90665ff", "name": "Async task details", "originalRequest": { "url": { @@ -12504,7 +12504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef1a5024-7c89-441f-8700-2f1fd5557aa9", + "id": "f1db8ba8-b590-41c0-8ef7-b78134b83452", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12556,12 +12556,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a004ab9e-e7be-4a80-a6d3-a55965e40b60", + "id": "f5deb94d-4ab7-4dc5-89c4-7f2e96f8969e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12618,7 +12618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3194ccd-7deb-48de-ab45-e443ef93c893", + "id": "b4b6ec87-3b2a-41e5-a196-b6ddd8803b2a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12670,12 +12670,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90cb36f0-81c4-4bba-aef5-5a3748036458", + "id": "63e118ce-45d9-4537-81e1-49472e8a880c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -12727,12 +12727,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3304e105-4bd7-4bd0-b6a2-a5eb54840601", + "id": "68236e61-515f-4a9a-bb85-49716fc8d6d0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12789,7 +12789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd683b01-1462-4522-862f-18829ce1f834", + "id": "fca530d0-2dea-41e4-a942-5008442150c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12841,7 +12841,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -12852,7 +12852,7 @@ } }, { - "id": "59bb85b5-85e4-4a8f-8644-737f2696016a", + "id": "afe79c65-ac3c-48e6-91ea-53dce7ff11ce", "name": "Delete Account", "request": { "name": "Delete Account", @@ -12893,7 +12893,7 @@ }, "response": [ { - "id": "6e39c760-2f4f-47aa-a5a4-359cd23b6f2f", + "id": "8c066c85-66ed-4bbf-ac17-69125f763742", "name": "Async task details", "originalRequest": { "url": { @@ -12937,7 +12937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "740375a7-b283-43cf-98f6-ca39643030af", + "id": "38c7a81f-3282-454b-8673-7759092af292", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12976,12 +12976,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81e61206-6667-4a97-8230-c9a73fa0fe6f", + "id": "873a7856-c54d-46ca-83c0-b0c25f7e16f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13025,7 +13025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea663534-77ef-40e0-a0ba-500931c3c01c", + "id": "b6cc1b9d-338c-4493-8df2-615be886f276", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13064,12 +13064,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b95a7b02-6694-4b6d-bc84-75644e390cb8", + "id": "ab6dae25-af49-45b9-8d00-334d2a61e898", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13108,12 +13108,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed7ebe59-0cc8-40fa-88db-c18bed70fe69", + "id": "709b584d-bc2e-420a-8f5a-95bbd555006f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13157,7 +13157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfa86b74-f476-428f-abdf-7ebf36329cb7", + "id": "7eb192a0-3d0d-48bd-9a6d-6062f1cc1670", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13196,7 +13196,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -13207,7 +13207,7 @@ } }, { - "id": "fb8cffbb-e655-4353-aaff-e44160ace420", + "id": "a15ce5db-208d-4f75-a666-c81cf98d809f", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -13277,7 +13277,7 @@ }, "response": [ { - "id": "cedc5785-e49d-48a0-a91c-85b6fb0c2870", + "id": "6c28da06-809b-4007-8807-1c9b31b805cb", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -13345,12 +13345,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"veniam_3\": \"aliqua dolore\",\n \"culpa_bd\": 78267857.05016205,\n \"sed_be\": 17620284\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"sintf\": -19630710,\n \"sunt_d\": \"ullamco commodo consectetur tempor sit\",\n \"enimd\": -90129768\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"cillum129\": \"dolore\",\n \"ea_13\": -51899720,\n \"ut_e37\": false,\n \"aliquipf3\": -50433480\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"occaecat_4\": \"magna adipisicing\",\n \"doloreb7\": -67324192,\n \"ead50\": -91382880,\n \"id2_d\": false\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2a80919a-960b-4988-b7ae-74693b31c3c9", + "id": "91cf3982-21fe-489b-8862-e53711fdc765", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13418,12 +13418,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "188b9d91-8df9-4356-b5f1-14fc614107be", + "id": "6359ae15-2cf2-4e7f-9c90-b839d89fe9b4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13496,7 +13496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dc1df47-b86b-43eb-9196-83c8326b9d96", + "id": "5183aadc-defc-4bd6-a909-fab7c5fb2c26", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13564,12 +13564,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "09f82b48-c206-4706-ac8b-20c51bd7f0ae", + "id": "db9be0f8-2c04-4ab9-af5b-c89b2748778c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13637,12 +13637,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7a5fb16e-5af4-44d4-b19a-24251c7eb5f7", + "id": "ce91096e-9754-4fd7-b9e6-f95375b04be0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13715,7 +13715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d02fc1c0-c891-4b1d-8d2a-d39ea7e644bf", + "id": "af9b5037-8433-4dd6-ab98-d36e9d5838f1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13783,7 +13783,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -13794,7 +13794,7 @@ } }, { - "id": "b7cf8836-b224-4992-b6bf-2465c2e64ef1", + "id": "ab6270b6-1498-47f6-a6df-71a268061c77", "name": "Reload Account", "request": { "name": "Reload Account", @@ -13836,7 +13836,7 @@ }, "response": [ { - "id": "6edc5e44-c39f-43ed-8bcc-f1c1175a4113", + "id": "27e1a7e3-0f21-4344-b32f-396af63c1e80", "name": "Async task details", "originalRequest": { "url": { @@ -13881,7 +13881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a659e75-1799-401c-9409-b9651ec2b3d4", + "id": "82d4599a-2671-4ed9-8ad4-167c594e0ab5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13921,12 +13921,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f5a611f-8b6f-411e-91d0-92f2ea58eaaf", + "id": "c4b24e2a-4bdc-4a12-b917-b60a5e20ea15", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13971,7 +13971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1df6f9c4-4b67-4aba-bc55-fdd32ad5a0e1", + "id": "bd11d977-7df8-4e0e-af24-708ef8977505", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14011,12 +14011,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39ca7c5d-9b10-4a3a-aa58-6d206fcc0e09", + "id": "0b89a680-8d99-4c31-8a48-22d39366e999", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14056,12 +14056,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e076e588-2463-4255-8998-fece7aa09fd0", + "id": "cd8ab27f-224f-4ade-b65b-f3e6d49157b2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14106,7 +14106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccf960e7-291b-4526-b1ed-812d1c112ae4", + "id": "d6830b8c-2be5-42dd-9de2-b1a5d74b7023", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14146,7 +14146,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -14157,7 +14157,7 @@ } }, { - "id": "c669a03a-f9a1-4ad3-86a4-8e3208630a4d", + "id": "a899f51c-b685-49c2-af51-65788c6e177d", "name": "Enable Account", "request": { "name": "Enable Account", @@ -14212,7 +14212,7 @@ }, "response": [ { - "id": "5477e095-6546-403c-ac46-02be044bb051", + "id": "c64c962e-c0c0-493a-8080-f46c577ea0f0", "name": "Async task details", "originalRequest": { "url": { @@ -14270,7 +14270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90bbd06f-3d55-439a-8119-15622eb9dbb9", + "id": "b20361ef-f0da-47a5-b6a6-609bb4724fb5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14323,12 +14323,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d88dcc78-15f8-426a-b314-b8855f04e6f6", + "id": "adec6dc3-9f47-4568-ba9f-cf282b9cc641", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14386,7 +14386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a02cb0a-c0c8-4fbe-8bbc-4e5fb7fd4a07", + "id": "c8ee52b6-ae8c-4d69-8ac1-3525c5c36e03", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14439,12 +14439,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c20ce36-b928-4b01-b929-0a9ed0056326", + "id": "906800d1-b9f1-48af-a420-08104d8e6cd7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14497,12 +14497,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b7642233-0942-452e-8ba4-beb3d10a5208", + "id": "ae9c97fd-9f54-408a-9244-008e18509bc7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14560,7 +14560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fe46d94-f7da-42ae-8c5c-54e6fb74c650", + "id": "dfae10f4-5019-48df-9df8-0e39ff1fedf5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14613,7 +14613,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -14624,7 +14624,7 @@ } }, { - "id": "7ce74c14-85fb-47a3-8a85-c84035ae631a", + "id": "3c2b6713-0877-4f48-ac1a-badf236071cf", "name": "Disable Account", "request": { "name": "Disable Account", @@ -14679,7 +14679,7 @@ }, "response": [ { - "id": "86586a10-42e4-4c74-97a3-dd6251e4ae0c", + "id": "eed1bc98-e905-48e1-b1d6-982735568525", "name": "Async task details", "originalRequest": { "url": { @@ -14737,7 +14737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a131f6f-dd24-453d-9539-fce6e6724097", + "id": "78016ae1-0e4a-4efa-b71f-d178e6912896", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14790,12 +14790,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d444a92d-1e31-4d17-9088-1dbde94636cd", + "id": "690b14eb-ab3f-447f-816f-ea6186497509", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14853,7 +14853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01d68469-4ad8-4001-a865-eb61820292d8", + "id": "788e26be-98e7-4140-b66b-f876208d8c63", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14906,12 +14906,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8c953f16-d7f1-463f-a193-70c6f033796c", + "id": "3efc003b-797e-4f54-9434-f2c8c3cf9f96", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14964,12 +14964,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f707d38c-e739-4e34-8ed7-dc021528ea7b", + "id": "ac2357ec-8806-41a4-8ff8-9ab4216e0693", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15027,7 +15027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72047d12-f33a-4c49-b653-08f10a62378a", + "id": "98582f0c-3dde-44c7-bc6e-aa6d820ed857", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15080,7 +15080,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15091,7 +15091,7 @@ } }, { - "id": "11422702-05ee-4c77-8a78-4e890528d049", + "id": "1f4e4ddf-728d-467f-9302-c1b89620aca8", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -15146,7 +15146,7 @@ }, "response": [ { - "id": "088f4dc2-3c22-4d29-91ad-023fc96a089d", + "id": "26887a9a-7a9d-453d-ab37-fb0eb510db4a", "name": "Async task details", "originalRequest": { "url": { @@ -15204,7 +15204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ab0bed0-0d87-47ab-8a4f-4817ef26d703", + "id": "e78edab8-6cf4-4461-923f-8dee21e9d780", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15257,12 +15257,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e96db4f5-3684-492e-953b-221e3d804a34", + "id": "7fb12dc3-1d10-4e94-b031-dc00e560f48a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15320,7 +15320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bde4564-875b-4a23-a770-adfe2a7dafff", + "id": "dec76aa8-dd3c-4bdd-818c-1f035dda9218", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15373,12 +15373,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b951801e-f422-4120-9209-2e1e63c79c6b", + "id": "0e072a2a-f616-41d2-af22-3bf5fde5ff0d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15431,12 +15431,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ffbe02ca-5e19-44f7-aa8e-0764ed59c79d", + "id": "6d938d17-fb56-46aa-880c-15d59893bd07", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15494,7 +15494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8beb8226-a2ef-48cf-b625-168e6ce715d3", + "id": "9374b4f1-f862-45ab-9c3f-3c796bba1a76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15547,7 +15547,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15558,7 +15558,7 @@ } }, { - "id": "90c38994-e611-483c-8b10-38d8fc9b7db1", + "id": "2619f646-6d33-4a2f-9f82-23121b9feed8", "name": "Enable IDN Account for Identity", "request": { "name": "Enable IDN Account for Identity", @@ -15600,7 +15600,7 @@ }, "response": [ { - "id": "47e518ec-98b4-4d74-9c24-e4330029855f", + "id": "4b717de3-ec7a-4f34-9d48-933454b334c8", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -15645,7 +15645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c370d2ca-44eb-4522-b81d-8d31308cd915", + "id": "64ef4f2b-a0ce-4714-af38-efd28fcee348", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15685,12 +15685,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0eeda360-8ff1-4cdc-9034-7d856e033fdc", + "id": "10b23611-e8f1-4dc2-bd98-26b546bfc2a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15735,7 +15735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6b5dd93-5d45-4f79-93bc-81734ec1b636", + "id": "6249e68f-4a69-44c5-bd8c-a3d1deafbea6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15775,12 +15775,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e724e754-3b14-40db-a3ab-27934e7fedba", + "id": "098ea629-6be5-4606-a6ce-9ee5dbcaf39f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15820,12 +15820,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f4e82c1-9ca0-4838-ac46-6c668f22c625", + "id": "43f1eed4-ded2-4973-8bbf-d23ad0767f54", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15870,7 +15870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d6a1dbc-15d8-42d5-8884-2a5d4ddebd14", + "id": "18d6851b-4f3a-4b70-8fc1-d8f91317adb7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15910,7 +15910,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15921,7 +15921,7 @@ } }, { - "id": "9e3daf93-f68b-43f9-ac32-ff66ded6f716", + "id": "405fbaa0-650b-4585-83de-f3191f6ddeb1", "name": "Disable IDN Account for Identity", "request": { "name": "Disable IDN Account for Identity", @@ -15963,7 +15963,7 @@ }, "response": [ { - "id": "e4cc368f-5843-4109-96e2-998faa7d3658", + "id": "2deac6eb-91aa-4aeb-abfc-f6268c01dc29", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -16008,7 +16008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd288551-b940-43f1-bc42-08a3139bf339", + "id": "b16467d1-dd55-420f-a904-99b192b4b2be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16048,12 +16048,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f0d27a5-b0a6-4c90-a5c2-5416efaf2054", + "id": "1fbee63a-70d0-419d-a445-9807e3ed9824", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16098,7 +16098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6b07de6-b3ea-46f8-8ee1-4d71734c2a62", + "id": "432e9786-e3eb-434e-8265-f4e46a9e2d49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16138,12 +16138,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd23401e-6846-4c2a-917d-ecf0daf95071", + "id": "1d6b0b26-6844-434a-894c-28fbde859a91", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16183,12 +16183,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76adb7c3-9f21-4273-870b-05519c31e4b3", + "id": "58bb6c82-b763-49b6-ae47-c96134dcf3b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16233,7 +16233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff0cc529-50ac-4e56-a297-b03eb00e7f0d", + "id": "9c50c670-6393-4ed8-9c3b-1a3b6d5de444", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16273,7 +16273,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16284,7 +16284,7 @@ } }, { - "id": "83228a28-6235-432f-b65d-6e8c390f9073", + "id": "3284e664-ff7f-4bb0-bf73-2e727bfd8107", "name": "Enable IDN Accounts for Identities", "request": { "name": "Enable IDN Accounts for Identities", @@ -16327,7 +16327,7 @@ }, "response": [ { - "id": "e925486d-4d63-47e7-9087-ed480e7cfd91", + "id": "7d76f02f-7f2e-48f1-b5d9-8a56e81eeb96", "name": "Bulk response details.", "originalRequest": { "url": { @@ -16384,7 +16384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72a101a2-2fb0-4338-a303-5e8a9345ef53", + "id": "d745b588-8a5f-495e-be10-3ec71e325c44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16436,12 +16436,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ff53025-c490-4f8e-985d-e22b1abc2893", + "id": "f78a09d0-d851-4e90-a2b9-1e67ce597ef9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16498,7 +16498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db73b5cb-4949-47c3-81d5-7b7de63b2e51", + "id": "1bc44a74-07fb-4458-bf5a-5161924e6068", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16550,12 +16550,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a1f6be8-d478-4bc9-8749-e1bcf8a56f9a", + "id": "0e0bc305-86dc-4617-b28b-da86ab54808a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16612,7 +16612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98ba861f-733a-4c71-b986-8c48f4a71f1a", + "id": "f3d3e721-bda7-4b81-83b0-eed7102249a9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16664,7 +16664,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16675,7 +16675,7 @@ } }, { - "id": "83b3727a-99cf-49dc-a654-ac73289223bf", + "id": "bcab83f3-731a-40b4-932f-a4e988cff611", "name": "Disable IDN Accounts for Identities", "request": { "name": "Disable IDN Accounts for Identities", @@ -16718,7 +16718,7 @@ }, "response": [ { - "id": "48c2a39d-0fdf-47d2-8409-7d06521b0028", + "id": "ea5330b7-58f5-4f07-848c-30e947428e5d", "name": "Bulk response details.", "originalRequest": { "url": { @@ -16775,7 +16775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3df59b2c-d9e6-4023-baa3-76b2484769cb", + "id": "7daec482-3650-4b55-9ad4-a01982df4ee5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16827,12 +16827,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c2fefc43-690e-4f2d-98e5-b49b4ad32fe6", + "id": "3a277a08-6f43-411a-96f4-63ae0bb9212e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16889,7 +16889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f43c00c-9e77-483e-949f-7a311a1f6498", + "id": "a799dcbf-8d21-4f9e-a842-f26f6fc3fe9d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16941,12 +16941,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a51a72a-198b-4853-b810-1184ed86308b", + "id": "78d479cb-5e1c-48a8-9740-d6ea0017570c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17003,7 +17003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caf05dd5-6742-4fab-b72c-7d695363ca03", + "id": "bf3c963b-9949-416d-a79d-5fb3e3e56066", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17055,7 +17055,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17072,7 +17072,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 IdentityNow 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 IdentityNow'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, IdentityNow would provision all the access the user needs, nothing more.\n\nIdentityNow 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 IdentityNow:\n\n- ManagerCampaign: IdentityNow 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: IdentityNow 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 IdentityNow 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 IdentityNow 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 IdentityNow.\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 IdentityNow 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 ceritifcation 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": "b3c538a3-d65d-47f9-8125-b45ef5e2a0a1", + "id": "3858195d-e458-4562-9863-ff1e2d7f0883", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -17095,7 +17095,7 @@ "type": "text/plain" }, "key": "detail", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -17156,7 +17156,7 @@ }, "response": [ { - "id": "8f59dca3-2272-487a-8942-f82a5e5c04cb", + "id": "2a947453-c6ad-42c0-8455-b84144b42f96", "name": "A list of campaign objects.", "originalRequest": { "url": { @@ -17174,7 +17174,7 @@ "type": "text/plain" }, "key": "detail", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -17249,12 +17249,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETED\",\n \"correlatedStatus\": \"UNCORRELATED\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"UNCORRELATED\"\n }\n]", + "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"CORRELATED\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"CORRELATED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10daf6e8-99eb-428a-9829-0609c9818522", + "id": "a903c2ed-f949-4e7a-a826-cdd38ab5dae4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17272,7 +17272,7 @@ "type": "text/plain" }, "key": "detail", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -17347,12 +17347,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ab06ea0-b776-4d81-8d09-3982457e63b7", + "id": "37ae0217-d5d3-4018-b145-717154cada88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17370,7 +17370,7 @@ "type": "text/plain" }, "key": "detail", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -17450,7 +17450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52579d6e-4796-4376-9c9a-281360a06d9b", + "id": "8e6b85b3-156a-4529-bc78-f140ecd72f91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17468,7 +17468,7 @@ "type": "text/plain" }, "key": "detail", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -17543,12 +17543,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "91759105-20de-48d4-9ee4-29218fd810f1", + "id": "298d5d9e-7537-4dd1-a0d9-1f5420a0d2df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17566,7 +17566,7 @@ "type": "text/plain" }, "key": "detail", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -17646,7 +17646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e51ecf1-3795-4ef4-9875-f086fe8a2fd6", + "id": "b6cbe30c-6598-4e3e-ae02-045e502fd793", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17664,7 +17664,7 @@ "type": "text/plain" }, "key": "detail", - "value": "FULL" + "value": "SLIM" }, { "disabled": true, @@ -17739,7 +17739,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17750,7 +17750,7 @@ } }, { - "id": "ba3fa809-bbe9-492a-b608-0f6914d37ec2", + "id": "4c037c72-3e4a-44ba-8633-b058d8ff3194", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -17781,7 +17781,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -17792,7 +17792,7 @@ }, "response": [ { - "id": "fd4c7e93-998c-4ed7-bc0d-5c5dd4f7ccc4", + "id": "98972fa0-5a7e-4a08-a096-26df9d452709", "name": "Indicates that the campaign requested was successfully created and returns its representation.", "originalRequest": { "url": { @@ -17826,7 +17826,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -17843,12 +17843,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3e02f34b-1d32-4cc5-b103-8ee060b93231", + "id": "0f29facb-9a5a-4461-b2d6-b3ba59a91f63", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17882,7 +17882,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -17899,12 +17899,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6097b4f3-272a-4288-b400-55982967557a", + "id": "c24e7887-1372-49a7-9480-24e1656dbf07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17938,7 +17938,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -17960,7 +17960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b27ddf7-acef-436c-b702-4b9b2775d953", + "id": "afa31041-37d1-42ab-bf4f-bedca07e59e1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17994,7 +17994,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -18011,12 +18011,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3e3da18-e192-4902-982c-4fde226bc4f1", + "id": "6fcb37eb-baec-45f1-b04f-d9062dc8b6e7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18050,7 +18050,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -18072,7 +18072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd826d13-9cd8-46d7-ae1e-96f2c44a056c", + "id": "402b19d3-0e87-4cdc-8e56-df5a5e6fb57a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18106,7 +18106,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -18123,7 +18123,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18134,7 +18134,7 @@ } }, { - "id": "48347125-b61d-4b26-b629-b613200ec652", + "id": "75a0dc3b-3aa3-4dd1-8ac8-eb2bbc1f3b17", "name": "Deletes Campaigns", "request": { "name": "Deletes Campaigns", @@ -18177,7 +18177,7 @@ }, "response": [ { - "id": "7a704127-1eb1-4bb3-add5-546692a72001", + "id": "b4997f8c-089e-4e33-a530-923a5f22ef8e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -18234,7 +18234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4894d5d6-a027-4cbb-bb51-b0a73afb724e", + "id": "a0dbeb03-5d8c-462e-97c9-640bb5012081", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18286,12 +18286,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "525ba898-8217-4503-8952-56e4c3bf5ea8", + "id": "33b8ef6d-e324-4134-ab9e-5b202154f4b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18348,7 +18348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7525c4ab-d0c5-4c48-8ac4-88fc1d7b6bec", + "id": "ad5f7f3c-49cf-4a26-abed-129d45280b66", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18400,12 +18400,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15d3cad7-c480-43ab-bb2b-c83db2e18cc1", + "id": "1af32475-3a3d-4231-a580-5868810b2664", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18457,12 +18457,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b7e3956-758f-4558-a25e-744d43063fc7", + "id": "b93931aa-3fb3-4380-97ba-2f3e2f84f361", "name": "Too Many Requests - Returned in response to too many requests in 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": "0ecac4c3-ad5a-40d3-a81d-8daf177d6704", + "id": "70c153f8-44f6-4e90-bef6-368d555a2078", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18571,7 +18571,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18582,7 +18582,7 @@ } }, { - "id": "d06d27ea-85cb-4e15-a122-eaf7aa9b342e", + "id": "a5a14bab-693c-4188-a02b-ff37f8167fbf", "name": "Get a campaign", "request": { "name": "Get a campaign", @@ -18623,7 +18623,7 @@ }, "response": [ { - "id": "601c682d-4136-40cf-8a29-56dbc4d20c1f", + "id": "eaf06a61-83b6-461f-8b2a-9b685e2a3541", "name": "A campaign object", "originalRequest": { "url": { @@ -18662,12 +18662,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\"\n}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"UNCORRELATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c38fef45-4fee-4056-b5ef-26b2ed8a201f", + "id": "f1ff1695-47f1-48f1-b827-e7578c735109", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18706,12 +18706,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "22364566-75fb-4084-bbd4-b633fe56f20b", + "id": "8601d3b9-316c-4ba4-9041-cd4d1de614fc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18755,7 +18755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80efddba-fcd4-4ed3-86c7-fc71691f6ad5", + "id": "84f0934d-bcb2-4a3b-af02-ac296e19c607", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18794,12 +18794,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4aa8dffe-4e85-4b1b-8e95-d381945570ae", + "id": "5775cd81-536d-4227-a3a3-f7934cceb485", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18838,12 +18838,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1772175e-e1d5-4f68-bfc0-ed4488359991", + "id": "8237d30b-0e1a-4366-87b8-d400617106ca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18887,7 +18887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e70ae11a-4da8-47ac-a8b1-861eaa4350ef", + "id": "996673f3-d222-4275-94e7-a6b4f706916a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18926,7 +18926,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18937,7 +18937,7 @@ } }, { - "id": "f29ede5b-18aa-48dd-bf82-0a10d5026062", + "id": "65c7cf41-81ed-4a10-b0a4-e7e2ff024475", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -18991,7 +18991,7 @@ }, "response": [ { - "id": "36ac6bb6-dfaa-4cd4-8d77-fcebd6ac7f80", + "id": "26cfd528-2ae3-425c-8d5c-a0b2a6f6f540", "name": "Indicates the PATCH operation succeeded, and returns the campaign's new representation.", "originalRequest": { "url": { @@ -19043,12 +19043,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\"\n}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETING\",\n \"correlatedStatus\": \"UNCORRELATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1caaa5a0-6a72-4a01-bc7d-12c2b7c5077f", + "id": "151e3a9c-1a5b-44ad-9b5f-939dfd950d8f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19100,12 +19100,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7460daf3-93a3-4b55-91f1-e1ad52c18c7b", + "id": "424625a6-ce93-49e7-9209-8d5b8a049a05", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19162,7 +19162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a844e05b-4eeb-403b-be67-86595995d43d", + "id": "e660e975-581b-4fca-8bdd-0342fbb04c14", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19214,12 +19214,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cdfe661b-786d-42f6-884c-fbcd458bb877", + "id": "c7c7cd58-29f4-4d9e-9e3f-d8041a7bfd97", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19271,12 +19271,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "acd7d958-1664-41a7-aa23-8d4329d27b59", + "id": "a764d937-5355-46f4-b48d-f27a17ff03d3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19333,7 +19333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02df7d64-c5d2-4079-807f-ba7d59b4425d", + "id": "c5587fe8-3e98-4385-bf9c-31cddefa27b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19385,7 +19385,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19396,7 +19396,7 @@ } }, { - "id": "fc9d2b9f-9806-4c0b-9f04-7880bc876e00", + "id": "4acb72ae-3610-45b7-8c25-4e13bf98ffb8", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -19451,7 +19451,7 @@ }, "response": [ { - "id": "fbb95c90-630d-4dc1-8e92-96061f5e4191", + "id": "bd803346-3e09-4a6f-b445-53393f46ee6c", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -19509,7 +19509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70b85b60-66eb-4165-8948-680819fd8baf", + "id": "5d11416d-ea1b-48ce-9a6e-cb9a8d9bf35b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19562,12 +19562,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "31105193-38b6-4b61-9c3e-83c961bd99bf", + "id": "c92cb8fc-0249-41bb-b183-5e8adc1d795a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19625,7 +19625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af5d3c39-1dbb-4833-972b-8ff3cb84fc6c", + "id": "d90933d2-e539-44b9-983c-046213974b74", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19678,12 +19678,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "efbe499f-9a67-4444-8b83-6017a70ed872", + "id": "f6fec5b1-5174-405f-80af-ec4804c3cb3b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19736,12 +19736,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2cf30be0-5ce5-44d0-9b8d-b56b7e1d6648", + "id": "a5533a2c-cebc-41ae-a303-593dfbd0dda5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19799,7 +19799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ef4a52a-c8a3-45c8-9c81-9feaac4ad15f", + "id": "9407be26-1243-49d8-bfca-7b092f5b9574", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19852,7 +19852,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19863,7 +19863,7 @@ } }, { - "id": "b72c0ade-f7d0-4ae2-8d95-f47f47dcfb31", + "id": "33acb15c-bffb-44b3-9257-f4ae960c7c34", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -19918,7 +19918,7 @@ }, "response": [ { - "id": "fd00a178-232e-4dc6-af1e-9186ac854102", + "id": "a4b7f400-7f16-4255-8e2c-140f805dc919", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -19976,7 +19976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "761173bb-9881-4c33-8185-9066f4da2ee5", + "id": "61ff984f-4de4-4ede-a71e-13d32d837a5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20029,12 +20029,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca19cf05-6474-4945-93e2-269c67c6ec8f", + "id": "43ff9e84-c853-49ea-bdf2-70dd573dcd37", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20092,7 +20092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b5f403c-5081-48e9-b1d0-d09052f72b10", + "id": "5dca7109-61c2-470e-a8b2-a670b7d13ce9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20145,12 +20145,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "be304309-69f3-4773-a1e0-56fd9a7d75c0", + "id": "7f3788e9-da07-4b1a-b4ad-67a5b9276a29", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20203,12 +20203,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a799892-167f-4507-8277-13e9a3ac78a6", + "id": "3d578a23-38d1-457a-a9f3-a588e7b0db79", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20266,7 +20266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56b84149-31ea-48b0-85ad-97030e22834b", + "id": "5c8a3380-1023-4762-9721-4eeca34a6631", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20319,7 +20319,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20330,7 +20330,7 @@ } }, { - "id": "abcc4690-4efb-44ee-bafe-935b244f3a59", + "id": "70f7d0a6-bb1b-4898-a7ff-db4dbf626b83", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -20372,7 +20372,7 @@ }, "response": [ { - "id": "2b939636-5082-4b45-aa1a-bfde2fc2d8b8", + "id": "c37d53f4-b3a4-4b56-9bd2-0f0fa330bb60", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -20417,7 +20417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a3cf3b2-07a0-4e46-903f-7b65a5c8d434", + "id": "0c423ab0-1cde-4e07-9aa1-3014a5d066e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20457,12 +20457,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d18231e0-44af-4de6-8634-a244e4c4e43d", + "id": "42f7a0f8-923c-4779-b3da-35f35c241337", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20507,7 +20507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "929a3bea-75c6-46ce-a65b-f84781e280b0", + "id": "1813f27b-fc3c-49f6-bc08-6f3668f0463a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20547,12 +20547,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c298c9b3-7f42-43f6-9e82-4b31890e1751", + "id": "94fbc112-aaae-40f4-89ff-a74dab102a11", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20592,12 +20592,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b8e06c9-f9d4-44d1-b252-e198ad04bfad", + "id": "a875be71-0316-47c3-a0d8-57e22337c7c9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20642,7 +20642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "868686a6-cfa9-49cb-b797-a4fd74b92702", + "id": "2afc8563-3d73-4106-8455-38baa57f1fd6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20682,7 +20682,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20693,7 +20693,7 @@ } }, { - "id": "bcd0ff00-3de1-4642-8d8b-20bd5124839a", + "id": "524b23b9-fabb-4405-8386-9d65f62a7050", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -20748,7 +20748,7 @@ }, "response": [ { - "id": "9e595b95-27f8-441d-b2c7-3074e0d431f4", + "id": "62b077e0-8d11-4e50-83c3-4c9480d5e7e8", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -20801,12 +20801,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"type\": \"ACTIVATE_CAMPAIGN\",\n \"targetType\": \"CERTIFICATION\",\n \"targetId\": \"\",\n \"status\": \"ERROR\",\n \"errors\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"type\": \"ACTIVATE_CAMPAIGN\",\n \"targetType\": \"CERTIFICATION\",\n \"targetId\": \"\",\n \"status\": \"QUEUED\",\n \"errors\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d56baa84-c305-4fd1-8b01-5fd20aafe7d5", + "id": "05b6bfd3-58bf-4174-85b9-86f14a1138c6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20859,12 +20859,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "11bc6006-48d4-49a4-b8c6-6f28657829ae", + "id": "734bc0ca-5af7-4aaa-98bb-54338342c726", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20922,7 +20922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1840960c-022f-403f-a6d2-fd81ac7412c8", + "id": "b4dfdffe-6adf-4c23-9691-fe33aee8902c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20975,12 +20975,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8c5c1df-c1f3-474c-afa7-13a14c9dc3e3", + "id": "c1371138-e7da-4e24-91a0-8e7befa4c4df", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21033,12 +21033,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5028ce4c-8f59-41d4-b13c-038bae159ca3", + "id": "11e2b841-31e1-4d99-95f3-9d9501fe6079", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21096,7 +21096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "234b571d-24fc-4656-abd9-4b1b8d7e25f6", + "id": "f8f4c72e-d651-4f7d-acf1-1a0ffbf9de96", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21149,7 +21149,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -21160,7 +21160,7 @@ } }, { - "id": "64f847a2-7956-4e6a-9e22-74e6c6237feb", + "id": "d3d807b4-3217-4710-a6bd-bbed836ee812", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -21202,7 +21202,7 @@ }, "response": [ { - "id": "15f25fea-b125-4584-8e1f-fcb3f8cd5e5c", + "id": "770bc851-2464-4942-a815-674ed6200305", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -21242,12 +21242,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"reportType\": \"CAMPAIGN_REMEDIATION_STATUS_REPORT\",\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"TERMINATED\",\n \"lastRunAt\": \"\"\n },\n {\n \"reportType\": \"CAMPAIGN_COMPOSITION_REPORT\",\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"PENDING\",\n \"lastRunAt\": \"\"\n }\n]", + "body": "[\n {\n \"reportType\": \"CAMPAIGN_COMPOSITION_REPORT\",\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"WARNING\",\n \"lastRunAt\": \"\"\n },\n {\n \"reportType\": \"CAMPAIGN_REMEDIATION_STATUS_REPORT\",\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"WARNING\",\n \"lastRunAt\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ed7dab8-f58e-49c6-8964-98b2e2415206", + "id": "93323b75-e38a-41bb-b494-b7023733fbdb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21287,12 +21287,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63e65be4-1ec2-4718-b514-ee2a151645f4", + "id": "799585bb-6e36-4cce-8b69-2cd29a21e71a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21337,7 +21337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac26217e-a3b5-4a72-ae4c-78c5287607ee", + "id": "137279de-7a99-4020-97f0-0781b2c235d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21377,12 +21377,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cf661c5f-4633-4962-a952-3fff0553d6ea", + "id": "aa7e8275-fff6-42b6-a4ba-151021237f83", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21422,12 +21422,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b6b6940e-f5c2-4ee2-ad93-6384328e1e04", + "id": "71e22f41-05e5-48c0-a98d-161974e431a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21472,7 +21472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c072c2a0-4d65-4b26-b4c9-5549cad57e58", + "id": "0aef717e-7ffd-4d65-bdd0-1736a9072283", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21512,7 +21512,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -21523,7 +21523,7 @@ } }, { - "id": "928f8d0d-2d73-4c5a-ab3c-f23d4ae3e600", + "id": "cea9d6ce-97b9-4518-b515-44e57d73d7a8", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -21555,7 +21555,7 @@ }, { "type": "any", - "value": "CAMPAIGN_REMEDIATION_STATUS_REPORT", + "value": "CAMPAIGN_COMPOSITION_REPORT", "key": "type", "disabled": true, "description": { @@ -21576,7 +21576,7 @@ }, "response": [ { - "id": "c493e16a-3319-476e-81cd-e89cb74b57c2", + "id": "af5bbc40-e46d-4959-a947-bfe4e19dcaab", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -21622,7 +21622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58b8094b-629d-404f-a12a-2266040513e1", + "id": "41fde361-9a87-4b4c-8cab-737e84a3fc7d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21663,12 +21663,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b598e12d-3228-49e3-a4d8-c9daa4e35bca", + "id": "13827a86-bf11-41ac-8034-8e43d077651f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21714,7 +21714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "103b03f4-a9b8-400e-9338-db65d0853157", + "id": "7ed2049a-3d21-4cba-8aed-010d6075c251", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21755,12 +21755,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64ba7ce2-14ba-4cde-9833-33a3d4833cb2", + "id": "23e5b459-1d98-410a-b107-c1958e452074", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21801,12 +21801,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f392dabd-b906-42f0-bf06-7e443390150b", + "id": "5c597d8f-08ad-41b5-be4b-816549d32393", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21852,7 +21852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3d20ea0-ba22-482a-907b-1f78432a970b", + "id": "6cd2df87-5eee-4ba6-9f5a-be5f53d7b9a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21893,7 +21893,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -21904,7 +21904,7 @@ } }, { - "id": "0a4e4202-cb24-4870-8388-6170eb5860ef", + "id": "289b6a32-e20e-4293-b2a7-96421bb27ad3", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -21934,7 +21934,7 @@ }, "response": [ { - "id": "a91699a6-60d9-4b55-ad69-a83cef184c78", + "id": "c5c5bd11-1a53-44d5-ace8-f0cc9bc6a5ab", "name": "Campaign Report Configuration", "originalRequest": { "url": { @@ -21978,7 +21978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ed5f982-b26f-4a17-a3b2-5ea70d46cb8b", + "id": "9f04816a-8ae1-478b-a40e-6bfb27b6f6f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22017,12 +22017,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f4ec438-bb88-4ec9-a18d-6a651dc749e4", + "id": "14e9280b-ccaf-4132-9d1b-0a4370e3ec5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22066,7 +22066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28bb0422-c5df-4c0d-8444-0ff1d59126b7", + "id": "377657e0-5ab9-4900-9c2b-7ff0656f5272", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22105,12 +22105,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "487c5c9c-1a6e-4444-996e-18d40c646aa9", + "id": "ef5b7700-72aa-4ae1-89a7-666cd5369f6c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22154,7 +22154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b03fe493-22b9-4225-93b6-9db14a5103bb", + "id": "ac1d87a4-3633-4a49-9ae5-2a46be30cde1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22193,7 +22193,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -22204,7 +22204,7 @@ } }, { - "id": "405f9f95-1259-418b-9fa0-7bbafc794c61", + "id": "c3350875-2f27-489a-8435-5b57b9631aa6", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -22247,7 +22247,7 @@ }, "response": [ { - "id": "172634a1-b764-4a36-8f63-cba96257a858", + "id": "accadc2b-f581-4f9c-ae00-cdd86bd03a6d", "name": "The persisted Campaign Report Configuration", "originalRequest": { "url": { @@ -22304,7 +22304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53f387bb-7764-4b7c-9821-09a7ceb19c80", + "id": "712a0258-90a1-49ac-a6bf-8f15b5269131", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22356,12 +22356,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "07675b45-c76c-4c15-8d26-ee6b2573fbd3", + "id": "af327fee-7376-430d-82c7-825be2e21cc7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22418,7 +22418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fa06174-88e6-465b-abc9-b40cf3006a33", + "id": "d54a38fa-c279-4e20-b95d-652ebe441742", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22470,12 +22470,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "82a779c3-4d10-4fdc-b824-9cf65c18aa04", + "id": "848f3976-6d06-4f26-8195-706e3edee148", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22532,7 +22532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b83e8e71-c754-4de9-a81a-56d6271a813b", + "id": "1b41a33f-a138-425c-af88-2277dcd715d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22584,7 +22584,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -22595,7 +22595,7 @@ } }, { - "id": "654f9451-891b-490f-bfa9-a676d0f5cd4a", + "id": "003f0ac8-aab6-48d5-846d-55e31c01d0a7", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -22667,7 +22667,7 @@ }, "response": [ { - "id": "2c7ba4a1-0b8a-4f9f-80fd-40cd918d7df6", + "id": "12456394-df24-4143-a188-5ec29820d4ef", "name": "List of campaign template objects", "originalRequest": { "url": { @@ -22751,12 +22751,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"STAGED\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n }\n]", + "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ARCHIVED\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"CANCELING\",\n \"correlatedStatus\": \"CORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3229509d-884b-441b-8ebe-eee4b46c05ea", + "id": "1f4cde74-1184-4e4a-b5a1-610a528ffbb9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22840,12 +22840,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea1c56af-1659-43bc-a552-96537ab8401c", + "id": "eb1687fd-1816-48f3-855b-5ae5d390cc13", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22934,7 +22934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0daac3e-20bf-4a85-99c5-e273b07235b5", + "id": "f4e82f34-bd17-4a0d-bbc1-2ed550310d89", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23018,12 +23018,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "23f206b4-b988-43a7-84ee-b4d2113fd744", + "id": "698742e4-3f55-4f3c-ad74-980712fc4777", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23112,7 +23112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adc75d51-57aa-4ed0-8eb7-41920868239e", + "id": "a1ed38ed-f9e3-4c83-9245-d333cdcde68b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23196,7 +23196,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -23207,7 +23207,7 @@ } }, { - "id": "d3078b12-1d48-4a12-afb8-48d787dfa3cb", + "id": "0d034726-a8fb-4d48-ac23-2a0f1878a064", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -23235,7 +23235,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETED\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -23246,7 +23246,7 @@ }, "response": [ { - "id": "75949523-7ca9-40a0-b9ce-de1fc51ee8fa", + "id": "1ad281f2-2ca5-4032-9bf1-35e7e1905a51", "name": "Created successfully.", "originalRequest": { "url": { @@ -23280,7 +23280,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETED\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -23297,12 +23297,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETED\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "439cfabf-71c6-46e1-9a16-ec22ebfe39ae", + "id": "814a299a-392d-40a2-8705-3d6372b62110", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23336,7 +23336,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETED\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -23353,12 +23353,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16767985-f5b4-45da-a02b-a66ff74ed4d2", + "id": "82a89d5a-45a5-4e00-ad4c-571bbbe7c016", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23392,7 +23392,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETED\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -23414,7 +23414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4b577ec-7c66-421b-aa2f-e9ae82e19128", + "id": "16ad7a60-03bf-49c4-be70-2069057b1983", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23448,7 +23448,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETED\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -23465,12 +23465,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "50ea94b6-e0fe-4806-a827-00651a5817f0", + "id": "9af449e9-bc7a-4fc9-9c77-c1f870a17676", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23504,7 +23504,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETED\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -23526,7 +23526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c2249e5-ece7-4e33-943d-23b598d66b92", + "id": "0dc88294-aaa3-428e-9db4-0a48a28ed64d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23560,7 +23560,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETED\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -23577,7 +23577,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -23588,7 +23588,7 @@ } }, { - "id": "4a5337bc-092b-4173-838b-ab7facbb89ff", + "id": "1b2720ee-67d4-497e-b056-5ee6e0e1b656", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -23629,7 +23629,7 @@ }, "response": [ { - "id": "d1cf919f-74e2-428c-ac7b-085ab1c3b6aa", + "id": "e927e0ad-f7a4-4955-ac2b-d1ef767cc710", "name": "The data for the campaign matching the given ID.", "originalRequest": { "url": { @@ -23668,12 +23668,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETED\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aae33aeb-95af-45b6-8835-4101f659666f", + "id": "82dd3477-4035-48b7-8529-0c0fe57a8628", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23712,12 +23712,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2fe98071-fa2b-499a-ba3d-6b7322f5f6e9", + "id": "d7081f73-3af2-4702-847b-0bfe7591e808", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23761,7 +23761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c347af05-11f3-4f90-83cd-b3be9cd81eb0", + "id": "9675a4ad-4306-4f45-ae15-4db6ba951c14", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23800,12 +23800,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c162a960-b243-4c66-b839-db8311725d5c", + "id": "18413cb6-9272-4f05-b083-bc7cdfef3768", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23844,12 +23844,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b70992a-864c-4167-941c-f7769da9fcc6", + "id": "7340c617-08cf-4415-86e0-f59c9dabec19", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23893,7 +23893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fb90327-7406-4dd2-9bc4-6ce87de2ef39", + "id": "53b9d68d-9cd6-4960-8bf6-197510d6b981", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23932,7 +23932,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -23943,7 +23943,7 @@ } }, { - "id": "26ce2c4b-0e5a-483e-8fc5-a43f4276b98b", + "id": "c5af52a3-cae5-4504-931c-6ea962b15238", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -23997,7 +23997,7 @@ }, "response": [ { - "id": "246fe91d-6468-4241-9054-73311adea101", + "id": "e46b44bf-b8a2-4daf-baf4-c2a48fe8ff88", "name": "Indicates the PATCH operation succeeded, and returns the template's new representation.", "originalRequest": { "url": { @@ -24049,12 +24049,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVATING\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"SELECTED\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"ERROR\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"campaign\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE_COMPOSITION\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"COMPLETED\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"created\": \"\",\n \"modified\": \"\",\n \"filter\": {\n \"id\": \"\",\n \"type\": \"RULE\",\n \"name\": \"\"\n },\n \"sunsetCommentsRequired\": true,\n \"sourceOwnerCampaignInfo\": {\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n \"searchCampaignInfo\": {\n \"type\": \"ACCESS\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n \"roleCompositionCampaignInfo\": {\n \"remediatorRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewer\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"query\": \"\",\n \"description\": \"\"\n },\n \"alerts\": [\n {\n \"level\": \"INFO\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"level\": \"WARN\",\n \"localizations\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ],\n \"totalCertifications\": \"\",\n \"completedCertifications\": \"\",\n \"sourcesWithOrphanEntitlements\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\",\n \"name\": \"\"\n }\n ],\n \"mandatoryCommentRequirement\": \"NO_DECISIONS\"\n },\n \"id\": \"\",\n \"scheduled\": \"\",\n \"ownerRef\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"deadlineDuration\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f23db3ad-924d-4320-b22d-c59adcdef140", + "id": "b8843b0a-0446-497b-aeb0-3fd28a472b2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24106,12 +24106,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "556ad081-4002-4f90-b166-53917827f985", + "id": "61f6b67c-8cdd-4f42-9e09-096273034a63", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24168,7 +24168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e8dbed2-b279-4958-8d87-7a70cb4f70d4", + "id": "19bd2d01-b706-415f-a8a3-9cdd2071a5fe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24220,12 +24220,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3580b4dc-4649-4b32-9831-f084acb2f728", + "id": "f765ce96-9683-4279-8637-ef83b200b3b1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24277,12 +24277,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a0171c0f-4f29-4e93-bacf-99afeaff9a1e", + "id": "2f25a8ec-5818-4a1b-ad5a-5a16665384f8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24339,7 +24339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be6ef39d-59eb-4e6b-a1e3-669338770659", + "id": "faaeccf7-83a8-460e-9e76-1c2794e57799", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24391,7 +24391,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -24402,7 +24402,7 @@ } }, { - "id": "e606975a-de1a-440c-9d93-d7bfbacc8523", + "id": "67e9e1d1-7cab-4654-8290-ea7887af6055", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -24443,7 +24443,7 @@ }, "response": [ { - "id": "1bad5a7f-ca92-4756-b740-a9f40956778d", + "id": "003d4020-6faa-4434-bb4a-ae41753b8863", "name": "The Source was successfully deleted.", "originalRequest": { "url": { @@ -24477,7 +24477,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e0086278-5745-4fb4-9e98-ea9cb7458c71", + "id": "aef3f454-e621-4e46-ad3a-d455f28a2e59", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24516,12 +24516,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e3c91b76-929a-4df3-9085-7bd490313856", + "id": "87b55714-c75a-46f9-b672-0014dbb2ef02", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24565,7 +24565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ba947bb-d22e-4c7d-ba99-bcc88da1d488", + "id": "2c37faf0-0384-4df3-9709-425c5b3eef05", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24604,12 +24604,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a493df92-c7d6-4444-9c97-090f110e0429", + "id": "e7d74a76-9db6-4c59-bd14-5209e89fb657", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24648,12 +24648,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "741fda5a-edf5-402b-ab89-4d838b203064", + "id": "3b350000-3fe0-4f92-81be-f375d0af99e1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24697,7 +24697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1d290f6-4b16-4e49-ad18-06a5d261f4f1", + "id": "2bf7f356-14f0-4203-a5e2-c8831fd69883", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24736,7 +24736,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -24747,7 +24747,7 @@ } }, { - "id": "0351fc59-94e5-41ec-8647-f8f050257673", + "id": "b48e455f-bb70-4584-a9dd-69c5744d88f0", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -24789,7 +24789,7 @@ }, "response": [ { - "id": "e90bb0d6-0706-4f12-ad1e-7130774f1a6a", + "id": "e8d1f5bd-2a21-438a-93a4-d49db28a5a39", "name": "Indicates a campaign was successfully generated from this template, and returns a reference to the new campaign.", "originalRequest": { "url": { @@ -24829,12 +24829,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"CAMPAIGN\",\n \"campaignType\": \"SEARCH\",\n \"description\": \"\",\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"ALL_DECISIONS\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"CAMPAIGN\",\n \"campaignType\": \"SEARCH\",\n \"description\": \"\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "08abe7f5-f8f6-40e2-8060-541d3a6716e4", + "id": "4e4fe942-68d7-4214-8124-3f931203e272", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24874,12 +24874,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16b4e4f8-bbc3-4038-b46d-9274b4cfc0de", + "id": "25a90105-0567-4cf0-8994-056a4c71b2e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24924,7 +24924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "935dfeb4-2a03-4190-933e-651a1df66d81", + "id": "6eafb304-81f1-4071-9255-be2ad0f775c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24964,12 +24964,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "75945791-5fe2-4a4f-b67c-c923d958bab3", + "id": "579cc171-a3b9-4356-bf70-ca42ab71a468", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25014,7 +25014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a285ce6b-aae7-49f4-bac8-adbf2500246f", + "id": "0e7255b4-165b-49f5-90cb-85419336b4d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25054,7 +25054,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -25065,7 +25065,7 @@ } }, { - "id": "c351bd34-e9dc-4da1-8630-6b5614c3072e", + "id": "55668cf9-4038-4534-807d-0730d362aa9c", "name": "Gets a Campaign Template's Schedule", "request": { "name": "Gets a Campaign Template's Schedule", @@ -25107,7 +25107,7 @@ }, "response": [ { - "id": "b79da088-a375-46d6-b95f-36bc0aae37d2", + "id": "cc0876c1-3ebb-4159-9dff-74e4d5ff2ec9", "name": "The current schedule for the campaign template. See the PUT endpoint documentation for more examples.", "originalRequest": { "url": { @@ -25147,12 +25147,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "body": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d1bec0e-6465-4c97-95fa-134db74965ef", + "id": "8fae0e21-3a06-47d5-92c7-1eca2bd53711", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25197,7 +25197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4089522-fa55-4ff8-b8fe-20509cc07e48", + "id": "fecc027b-d9f1-4f56-b77a-e24ef2568860", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25237,12 +25237,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5536938-89ef-4337-9779-2c92492063a8", + "id": "0876a785-a129-4d28-b5d0-81638c6866b5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25282,12 +25282,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9aa6d4f5-109b-4890-90f0-ad0b1515eac3", + "id": "91fd099f-774f-4d52-b8a6-d89d9ec2a5c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25332,7 +25332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb4840d5-7301-498a-9f40-16fda7463ff3", + "id": "717a9544-3d6b-4c6c-8d5f-bf2cf519e615", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25372,7 +25372,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -25383,7 +25383,7 @@ } }, { - "id": "4a2ae31f-fc3d-4482-94e4-dbca19303247", + "id": "2ce95a09-9972-4015-8252-f99331721f83", "name": "Sets a Campaign Template's Schedule", "request": { "name": "Sets a Campaign Template's Schedule", @@ -25427,7 +25427,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25438,7 +25438,7 @@ }, "response": [ { - "id": "07daebeb-fbd1-4fcd-98bf-1e60278aad24", + "id": "6f8c0d34-f85e-49f7-80b2-c2afabee5b4c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -25470,7 +25470,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25486,7 +25486,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b5a8fa49-f9c2-4882-a397-ad44bdabd279", + "id": "0ae2a274-768b-4194-aae9-4dc0df7d2e68", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25522,7 +25522,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25539,12 +25539,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c92cbd32-d948-4288-8fa3-eb0c2461ce96", + "id": "c0381d3e-c5e6-4cf8-a7b6-3feecafe6256", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25580,7 +25580,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25602,7 +25602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bfa74f7-d688-430f-9af4-93d93168b716", + "id": "b81aa527-5402-4ae2-9e91-81a42d3ad178", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25638,7 +25638,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25655,12 +25655,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b599682-2029-4531-8a39-0f17bcc4954f", + "id": "cef85add-4ec6-4d37-b4ec-a73c7e5f0e4e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25696,7 +25696,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25713,12 +25713,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4d93824-4134-46b6-9dc2-45d2c74bac1a", + "id": "987dad96-cee4-40ca-bcc2-37c57bcabcc4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25754,7 +25754,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25776,7 +25776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71ae8759-3262-400f-a58e-801cdca19a31", + "id": "9020ddfe-a458-4a24-9d9e-4199274aa69f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25812,7 +25812,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"months\": {\n \"type\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25829,7 +25829,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -25840,7 +25840,7 @@ } }, { - "id": "c0ff9576-ce94-44ce-bb35-914f615bbd22", + "id": "4bc8fddb-d6cd-4b30-aaac-17437bd1f60e", "name": "Deletes a Campaign Template's Schedule", "request": { "name": "Deletes a Campaign Template's Schedule", @@ -25882,7 +25882,7 @@ }, "response": [ { - "id": "84d46bbb-60a1-4887-9a3a-09637f262b4b", + "id": "a8c89cf2-41c9-4196-8d01-7e26db01e61a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -25917,7 +25917,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0f57dd02-ec63-4b87-a63d-5ed89f8707e7", + "id": "f7057146-3d9c-4307-adb6-4d4a39d2584f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25962,7 +25962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbbb12d4-2ec4-4edb-9e13-91de27188c7b", + "id": "302f6715-9f7b-4e5d-92d4-6e36faa579b8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26002,12 +26002,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39745c3a-bd54-44c2-b137-cf23593c85a1", + "id": "1af34cde-3304-4eb5-8058-9016f270a0d4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -26047,12 +26047,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e44c98c-d9c2-420c-9775-7ae80d4e2018", + "id": "75172f03-3bdb-4a83-a6fd-0cd2e9f9eb1c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26097,7 +26097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d57e337e-eb5d-445b-9be6-0524d79da555", + "id": "7709af0d-358b-4e74-875a-a2c9ea447257", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26137,7 +26137,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -26154,7 +26154,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 IdentityNow'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, IdentityNow 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/reassign-identity-certs-async).\n", "item": [ { - "id": "206b5f72-c5ce-4050-a920-d774b6e07a86", + "id": "e77198a8-fac8-4ffc-97d6-a18de9e50d63", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -26198,7 +26198,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26209,7 +26209,7 @@ }, "response": [ { - "id": "f8594d9c-4d46-4956-a1af-0c2ef1a66a98", + "id": "8d744428-0257-44db-9f5b-a021961ad606", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -26245,7 +26245,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26262,12 +26262,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74c5cb1e-96aa-42e5-b84c-fb979a49bb49", + "id": "06f2f7d1-9658-44f2-a1e5-d29ad9030523", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26303,7 +26303,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26320,12 +26320,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b04ced8-578a-4dd0-96c9-16d79ef8fab5", + "id": "9c82c8b1-9c27-471f-8cc8-0bfbbafe4526", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26361,7 +26361,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26383,7 +26383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7789617d-80ba-4e67-bb5e-be811eba9473", + "id": "ff0e20fd-09f7-4a57-b508-dfa7976f5c76", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26419,7 +26419,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26436,12 +26436,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de4d291a-69db-46b3-a09a-0a99a0ea7fb2", + "id": "ff05d631-81f1-448c-9d80-8c4cfdebda85", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -26477,7 +26477,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26494,12 +26494,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3291d68b-b42d-4245-bee7-dd65ee59c57c", + "id": "9c0c2517-5d7b-4a6f-b111-784ce977ed35", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26535,7 +26535,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26557,7 +26557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dd5e348-22c7-4ef7-b7ee-24b815705b16", + "id": "a6a7af49-f7ea-4fa5-b2ac-80951cb96801", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26593,7 +26593,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", + "raw": "{\n \"reassign\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY_SUMMARY\"\n },\n {\n \"id\": \"\",\n \"type\": \"ITEM\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26610,7 +26610,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -26621,7 +26621,7 @@ } }, { - "id": "6a3cec62-a2c1-45c4-85fe-28932ce9587d", + "id": "baa948ac-9b19-47ae-b963-71bce5ea2c51", "name": "Certification Task Status", "request": { "name": "Certification Task Status", @@ -26674,7 +26674,7 @@ }, "response": [ { - "id": "f4ccbc2b-d475-4ec6-b7a2-e17d299bce01", + "id": "4ae093bb-a51e-46a0-95db-10395ddb8f16", "name": "A certification task object.", "originalRequest": { "url": { @@ -26715,12 +26715,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "09bf826e-6947-4531-ad52-767b9d7e0ec5", + "id": "60a58ba1-d81d-4cd9-b39b-296a99d82b24", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26761,12 +26761,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "73d50570-e5dd-454f-a18b-e0c888485063", + "id": "db30d4d5-227d-498f-a6be-d77d2039f0be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26812,7 +26812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c58812f-5c4b-43ac-90dc-8e86cde1ff94", + "id": "e4d4eead-6ccc-421a-ba39-a9b04918b749", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26853,12 +26853,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "09948209-05b5-40b3-ab02-e9c430494f36", + "id": "10d64a96-b430-4900-8eab-72b2f918257d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -26899,12 +26899,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a3643601-e066-4605-9003-2bca85bec71d", + "id": "a9ff79b0-86c8-4795-8366-1d450ad5ac51", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26950,7 +26950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "156ab079-3202-4e5b-bfb6-661c7f79f657", + "id": "63cdba6c-0715-4344-ac3e-1dc67cc62fb6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26991,7 +26991,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -27002,7 +27002,7 @@ } }, { - "id": "8d47b37c-5b75-4987-b403-ee0a99b9964c", + "id": "621b7960-7e14-4fde-adf0-b3a083a5ba11", "name": "Pending Certification Tasks", "request": { "name": "Pending Certification Tasks", @@ -27044,7 +27044,7 @@ }, "response": [ { - "id": "eaa9ef5f-4c84-4cb1-bbd9-8a7587d367f9", + "id": "9a6bbbfc-75a0-4464-b8be-3905078a477f", "name": "A list of pending (`QUEUED` or `IN_PROGRESS`) certification task objects.", "originalRequest": { "url": { @@ -27084,12 +27084,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"IN_PROGRESS\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f162e5c3-7267-44ac-9126-edf09dcf6447", + "id": "bf607c69-b52c-4bc1-bbd1-d4ebc91859f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27129,12 +27129,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e1feb04c-6f3d-48ea-9735-483163c50d14", + "id": "441813be-68c7-49b2-8a78-6877541ad599", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27179,7 +27179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd3da48f-0694-48fb-9356-b59e87d88ea7", + "id": "8e30c5a7-3f75-405e-8902-757ecca0b16e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27219,12 +27219,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64dcd674-22cc-4ec4-ab34-b7ff2a70a585", + "id": "8c1f819a-24e2-465e-abea-2eb7f877a986", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27264,12 +27264,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "882af4d9-30bd-47d7-ac8b-b22a2ce94d9b", + "id": "ac8762e3-73f9-4127-b79c-0502d41418cc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27314,7 +27314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc0b8d46-e8e9-4c57-9fc1-5258bd10a153", + "id": "f2a6c94c-4ed0-41be-9a95-b55821735cf3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27354,7 +27354,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -27365,7 +27365,7 @@ } }, { - "id": "8007d2ba-d498-4a77-85c6-af5d1ef88334", + "id": "1536fae8-9f03-4842-8b2d-c3cf6853d2e8", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -27456,7 +27456,7 @@ }, "response": [ { - "id": "888e097d-59c0-45f9-a854-c3fe17a56654", + "id": "9608bdc8-7615-4d9b-b54e-27a457a2b788", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -27540,7 +27540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "119126f8-cb8a-4cee-be89-40b47e8c035d", + "id": "0ef051f7-9746-49ac-b6ff-9b040636ece8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27619,12 +27619,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da4ddd87-552a-4cca-a1b2-7495c043c46c", + "id": "317eb785-98c7-44ad-8071-4a542187ecd1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27708,7 +27708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2dc14fa-03fa-4e74-b58b-460340079b18", + "id": "c545c9bc-b37d-455c-bcb1-6614e6cea6b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27787,12 +27787,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35524e61-8763-4086-95b2-916959e57c51", + "id": "dba6cc0a-94ed-441f-a299-49d63f7a61e7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27871,12 +27871,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "60560fea-31e6-4efa-a5da-cb59418fb9d5", + "id": "5401c72f-1f0b-44d5-97b0-e40b11c633c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27960,7 +27960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03a0d6d1-6bd2-4fe1-a640-d543f0a88055", + "id": "4381e6a5-ca86-47b1-87dd-07e9cb24f868", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28039,7 +28039,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -28050,10 +28050,10 @@ } }, { - "id": "a6bdb5a7-1c95-4451-82cc-4eff800846da", - "name": "List of Reviewers for the certification", + "id": "521a3cfc-086a-4e88-b912-823e8dd0d653", + "name": "List of Reviewers for certification", "request": { - "name": "List of Reviewers for the certification", + "name": "List of Reviewers for certification", "description": { "content": "This API returns a list of reviewers for the certification. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API. Reviewers for this certification can also call this API.", "type": "text/plain" @@ -28138,7 +28138,7 @@ }, "response": [ { - "id": "bce2e74a-63f8-47d5-8217-6653b7f1e263", + "id": "cf65f703-73cf-47a0-a07a-2eba3db98d1f", "name": "A list of reviewers", "originalRequest": { "url": { @@ -28229,7 +28229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94fb4c3e-6cdb-49de-b56f-7a43faa294d7", + "id": "b1bc4c7a-1d63-485d-a666-d98010e4dde8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28315,12 +28315,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3aa1011-be48-49ee-83e8-96825d8f29b7", + "id": "84c37a7b-da13-4434-a1c3-8426ddc28da3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28411,7 +28411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f47eb643-f711-4025-bd86-8c4cfc634a83", + "id": "dbc0d48e-4cb5-490d-8649-1c895821e36c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28497,12 +28497,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "799e80bf-129e-4d1a-ace6-bb310a96a176", + "id": "7ae1391e-338b-40a9-a864-5b76d9c15e15", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28588,12 +28588,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "79cfe16d-852a-42c7-902d-bdc671a42fc1", + "id": "7bab4a8a-6047-407d-a07b-e2f632d6a77b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28684,7 +28684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d766362c-f3df-4f00-829a-00ffe4d71495", + "id": "caa8904e-157a-421f-8676-7880b4d499d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28770,7 +28770,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -28787,7 +28787,7 @@ "description": "", "item": [ { - "id": "47ccc57d-cecb-4b17-a8fe-19822cdd94be", + "id": "9dfe2509-b7d8-46d7-bd6a-50b9d2620f80", "name": "List Connector Rules", "request": { "name": "List Connector Rules", @@ -28816,7 +28816,7 @@ }, "response": [ { - "id": "94d23cb3-cfe0-4ef9-a645-1851fdf15268", + "id": "ecffbab4-6eaa-47c5-bbc2-9476635413dc", "name": "A list of connector rules", "originalRequest": { "url": { @@ -28854,12 +28854,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"ConnectorAfterDelete\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n },\n {\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"ConnectorBeforeCreate\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n }\n]", + "body": "[\n {\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"WebServiceBeforeOperationRule\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n },\n {\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"ConnectorAfterDelete\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1aef266a-dbfc-4c4a-aaa3-ec26b577c72e", + "id": "ce7c5c7e-4f98-4df3-ba34-94bae00f86fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28897,12 +28897,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ebc20a3c-1a97-490a-82dc-9bbc2728b62e", + "id": "a8ec731e-930c-44b6-90d7-ef505cadaf6d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28945,7 +28945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1367ae13-20c0-4abd-8d75-33b48a34b66c", + "id": "0a6e39fc-3985-4ac6-87dd-c21828038089", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28983,12 +28983,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71e6dfdf-8631-44cf-ab57-4886cdf94b3f", + "id": "bac5f052-b5a4-4f29-bd04-53c4fe8d8f4a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29031,7 +29031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42b00d33-a635-4b67-abca-290b31d9acbc", + "id": "e71c4426-d29f-49f0-9945-7d4b62ee7ede", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29069,7 +29069,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29080,7 +29080,7 @@ } }, { - "id": "1fee90fc-0443-4868-abd4-52fd5879ba9e", + "id": "c49348cc-fda2-4416-b194-3ded9f01533e", "name": "Create Connector Rule", "request": { "name": "Create Connector Rule", @@ -29111,7 +29111,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"\",\n \"type\": \"PeopleSoftHRMSBuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -29122,7 +29122,7 @@ }, "response": [ { - "id": "6548904a-8e10-4745-99e0-a0043ee97c75", + "id": "6fa15a34-80ac-4ede-b285-354a228b35af", "name": "The created connector rule", "originalRequest": { "url": { @@ -29156,7 +29156,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"\",\n \"type\": \"PeopleSoftHRMSBuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -29173,12 +29173,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"ConnectorBeforeDelete\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n}", + "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"RACFPermissionCustomization\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "264a2d2e-acb7-484e-84c0-9ead3a218a00", + "id": "f51fae95-f145-4f24-8275-7456288fd82b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29212,7 +29212,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"\",\n \"type\": \"PeopleSoftHRMSBuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -29229,12 +29229,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5e34722-e39e-4fac-a157-ac0451084a3f", + "id": "dfb8b019-ae6a-44be-9322-513c7aee028d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29268,7 +29268,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"\",\n \"type\": \"PeopleSoftHRMSBuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -29290,7 +29290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f9c4400-5012-41b8-862c-e70c0be8ba36", + "id": "65e1dd25-c9b1-42e7-9ada-2593cfbd4ec0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29324,7 +29324,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"\",\n \"type\": \"PeopleSoftHRMSBuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -29341,12 +29341,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b7ef208-c7de-440a-ba37-71a9e7178268", + "id": "4ae14a6b-89b3-4dd6-9a61-b2d1eed7281c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29380,7 +29380,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"\",\n \"type\": \"PeopleSoftHRMSBuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -29402,7 +29402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75f4a64e-c1f3-4fa0-9dd7-bbd78bc37d50", + "id": "c894e69f-319d-4a1e-86c0-a02f4f359e03", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29436,7 +29436,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"BuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", + "raw": "{\n \"name\": \"\",\n \"type\": \"PeopleSoftHRMSBuildMap\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -29453,7 +29453,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29464,7 +29464,7 @@ } }, { - "id": "d2fe77fc-2231-46c8-babe-06d9f550ec34", + "id": "34076ad6-7cab-4b0c-9317-e3531d4d1dd9", "name": "Connector-Rule by ID", "request": { "name": "Connector-Rule by ID", @@ -29505,7 +29505,7 @@ }, "response": [ { - "id": "4a1c0639-d7b8-4aa7-a031-0a17f870f4e6", + "id": "1a55463e-1314-43a8-8315-cd65e47ac80a", "name": "Connector rule with the given ID", "originalRequest": { "url": { @@ -29544,12 +29544,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"ConnectorBeforeDelete\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n}", + "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"RACFPermissionCustomization\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c492a25-b415-486e-8c06-c6493bef047e", + "id": "bff554b1-2fa7-4997-8243-531c39eea398", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29588,12 +29588,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b56f7b4-0d0a-49b4-a05d-a4970ef9de65", + "id": "50e1a032-68c6-4c10-8f8a-8c411e1e644f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29637,7 +29637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49cdcf0c-76ae-44b1-9af5-d119fea73e67", + "id": "0d1a860b-12e8-4ecb-8521-def8df45c611", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29676,12 +29676,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83865172-d077-43d3-baae-9b2e8e3ba205", + "id": "f470019c-e7dd-47cf-a7e8-26e680b8fabc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29720,12 +29720,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8223e11-6c03-4bb5-9c80-d092e1ff09ea", + "id": "bea7c49c-bd90-45a9-afcd-baa8c59b36ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29769,7 +29769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5b8c105-3fe7-4264-97de-2c84d31597cc", + "id": "f905984a-0575-45b8-bf58-0c8f063b409f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29808,7 +29808,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29819,7 +29819,7 @@ } }, { - "id": "80f7f974-8ad6-4189-a30d-a5f0d5f3650c", + "id": "e7ac3dca-dd51-400d-b03a-edc841483c9e", "name": "Update a Connector Rule", "request": { "name": "Update a Connector Rule", @@ -29873,7 +29873,7 @@ }, "response": [ { - "id": "8e6063b7-90b2-468f-bec2-ec97fa27890b", + "id": "7a5d0211-5cab-4a04-8ac6-1ea99e437ed1", "name": "The updated connector rule", "originalRequest": { "url": { @@ -29925,12 +29925,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"ConnectorBeforeDelete\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n}", + "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"RACFPermissionCustomization\",\n \"description\": \"\",\n \"signature\": {\n \"input\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n ],\n \"output\": {\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"\"\n }\n },\n \"attributes\": {},\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c1a133a-f5ef-4b08-8e93-1bc71e5f6bfb", + "id": "ba9b2420-85e9-45d2-9b54-e628a4f6c86d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29982,12 +29982,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c1b8aa9-7354-472f-97fc-554ee5f7dc81", + "id": "86cddaa2-ba9c-4698-90f7-ac5858d1701e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30044,7 +30044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b4b9f64-08b7-4362-818d-c8d5190266ea", + "id": "e00732d6-a2d6-40b2-8e73-c68c08bac474", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30096,12 +30096,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "801bd7da-91e3-46ff-9c6c-f9484b6bb9b5", + "id": "6d8b684b-49cd-4f1b-9496-a6f7e259c946", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30153,12 +30153,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b649f18e-6339-4f8f-b1d1-ab8a004f1e85", + "id": "980130ac-339e-456e-a018-25369f55ee7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30215,7 +30215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2b2acb0-6ddb-4195-bfc4-6e4c819679ca", + "id": "7b96193e-4fc5-4008-b8b1-2af6af5a7851", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30267,7 +30267,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30278,7 +30278,7 @@ } }, { - "id": "fa981052-dc4f-48d0-a167-ab8f7b4c3986", + "id": "b352c903-e77a-4411-ba63-6d8d013bf42b", "name": "Delete a Connector-Rule", "request": { "name": "Delete a Connector-Rule", @@ -30319,7 +30319,7 @@ }, "response": [ { - "id": "6ca62317-6c56-46a8-b35d-8f7f6a8409e3", + "id": "2644a955-3d2c-4fb1-862a-324f7e7bbd1d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -30353,7 +30353,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7b2fa831-a5dc-487f-a474-5518edeaf9db", + "id": "449ba33a-c8e4-489a-b8c2-a6eb146730d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30392,12 +30392,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e95f71e3-3f12-4f3c-8999-5aa72e9e01cf", + "id": "ee12e223-83cb-40db-9e05-6a319f7ee643", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30441,7 +30441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b163d9dd-2afd-4285-99ba-38306775fe7e", + "id": "ecf49ca1-27c5-43b0-a3d5-493edac3caf9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30480,12 +30480,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4b3864e0-85fd-4005-ac99-42ca02cfd3ce", + "id": "208e3b96-ab06-4d32-aaff-e7220de58092", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30524,12 +30524,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7371581d-208b-462f-9dc5-fca773f7aba5", + "id": "20009d1c-3be5-4309-8e92-0527ed1c2cee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30573,7 +30573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8f28118-85f8-4ee5-a23a-8faff4b2b330", + "id": "73879532-e99d-41f5-a482-e4ce2451c4e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30612,7 +30612,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30623,7 +30623,7 @@ } }, { - "id": "465e210e-5161-46d8-b37d-21909394f805", + "id": "2b884727-79d2-4365-8efb-78a76d743894", "name": "Validate Connector Rule", "request": { "name": "Validate Connector Rule", @@ -30666,7 +30666,7 @@ }, "response": [ { - "id": "64b4e9f7-4502-41c9-b33a-1bb5d92536ea", + "id": "c9062719-f023-40d3-9c70-df39a96a578f", "name": "The status of the code's eligibility as a connector rule", "originalRequest": { "url": { @@ -30723,7 +30723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcd6410f-42cc-4cc6-8938-e578415dcbdc", + "id": "4f9a955b-fad4-449c-8dca-ad2733c2bed9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30775,12 +30775,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b284f730-d769-4220-9b00-e2c7d0b3a137", + "id": "9613461e-2f14-452d-929c-02e8bc762a03", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30837,7 +30837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da2d2458-9b21-47e5-aee0-94f642d41ab1", + "id": "94df07c1-6852-4469-9963-41d03016a4e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30889,12 +30889,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c71c435-012a-4bab-9b20-dab3a497c85c", + "id": "2a0280bd-8f11-442f-b9fe-8fa99cd03e7c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30951,7 +30951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d45745e0-d059-4410-a3ce-c87234f4e081", + "id": "bfde0bf5-e009-4b62-82fe-283f44d18243", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31003,7 +31003,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -31020,7 +31020,7 @@ "description": "Use this API to implement connector functionality.\nWith this functionality in place, administrators can view available connectors.\n\nConnectors are the bridges IdentityNow uses to communicate with and aggregate data from sources.\nFor example, if it is necessary to set up a connection between IdentityNow and the Active Directory source, a connector can bridge the two and enable IdentityNow to synchronize data between the systems.\nThis ensures account entitlements and states are correct throughout the organization.\n\nIn IdentityNow, administrators can use the Connections drop-down menu and select Sources to view the available source connectors.\n\nRefer to [IdentityNow Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about the connectors available in IdentityNow.\n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/idn/docs/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 IdentityNow.\n", "item": [ { - "id": "7802ece1-654d-45ed-a51a-c3f152a90de1", + "id": "aab3610a-6d68-47f5-a912-199eab4308da", "name": "Gets connector list", "request": { "name": "Gets connector list", @@ -31079,7 +31079,7 @@ "type": "text/plain" }, "key": "locale", - "value": "de" + "value": "ru" } ], "variable": [] @@ -31095,7 +31095,7 @@ }, "response": [ { - "id": "11904ad9-59b8-4014-9b8e-15e9d21b71b3", + "id": "1b30d8b1-7c0d-4a58-91af-a3e9f12fdb7d", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -31149,7 +31149,7 @@ "type": "text/plain" }, "key": "locale", - "value": "de" + "value": "ru" } ], "variable": [] @@ -31184,7 +31184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b7c67cc-2e1b-4777-89aa-b5b027434487", + "id": "1e6b89cb-a5c7-47b9-868b-ced06427997a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31238,7 +31238,7 @@ "type": "text/plain" }, "key": "locale", - "value": "de" + "value": "ru" } ], "variable": [] @@ -31268,12 +31268,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d9cff10a-4e49-48d0-b115-f4ad8e13e383", + "id": "7c095ef0-9847-4efd-be96-b45d481ff702", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31327,7 +31327,7 @@ "type": "text/plain" }, "key": "locale", - "value": "de" + "value": "ru" } ], "variable": [] @@ -31362,7 +31362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9f47423-9ef6-442b-b216-5d3676bf8dbe", + "id": "36b5ca52-ef89-489b-9e0a-aef2c9ba2ed2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31416,7 +31416,7 @@ "type": "text/plain" }, "key": "locale", - "value": "de" + "value": "ru" } ], "variable": [] @@ -31446,12 +31446,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f245c09-29b7-4c2f-9b1c-d9a1e23a99ff", + "id": "6b653c75-44a1-4c2e-82d4-2ab1b2138a82", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31505,7 +31505,7 @@ "type": "text/plain" }, "key": "locale", - "value": "de" + "value": "ru" } ], "variable": [] @@ -31535,12 +31535,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab49dd76-21fe-418c-8682-07c2b5858269", + "id": "5e847ca5-f56f-4587-80ee-92873b0c041b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31594,7 +31594,7 @@ "type": "text/plain" }, "key": "locale", - "value": "de" + "value": "ru" } ], "variable": [] @@ -31629,7 +31629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3622b34-6c00-4bf4-9854-20690c1ea1ac", + "id": "61d480a2-dbd1-4b4a-a16f-e2e9f6e67d75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31683,7 +31683,7 @@ "type": "text/plain" }, "key": "locale", - "value": "de" + "value": "ru" } ], "variable": [] @@ -31713,7 +31713,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -31730,7 +31730,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 IdentityNow.\n", "item": [ { - "id": "98c51b1b-78ef-461d-b215-929dae3a5e16", + "id": "62684806-50f5-4a19-99cb-7950b0e42634", "name": "Export form definitions by tenant.", "request": { "name": "Export form definitions by tenant.", @@ -31796,7 +31796,7 @@ }, "response": [ { - "id": "5720f309-132d-49fb-85ac-d88582b0b9e3", + "id": "236a51c7-571d-42f1-b3db-27809b5a8c54", "name": "Returns a list of form definitions by tenant", "originalRequest": { "url": { @@ -31871,12 +31871,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": \"\",\n \"results\": [\n {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"laboris15\": {},\n \"sit5\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n },\n {\n \"config\": {\n \"occaecat6d4\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"consecteturf\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"consequatd\": {},\n \"laboris_35a\": {},\n \"aliqua85\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n },\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"cillum_ca\": {},\n \"amet_f\": {},\n \"dolore64\": {}\n },\n \"elementType\": \"TEXT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_2c\": {},\n \"ete\": {}\n },\n \"elementType\": \"DATE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"anim433\": {},\n \"consequat_2\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"cupidatat_f7\": {},\n \"nisi_1\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"elit_a3d\": {},\n \"aliqua_92\": {},\n \"cupidatatb_\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"laborum_7\": {},\n \"ut_c\": {},\n \"aliquad8_\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"minim54b\": {}\n },\n \"elementType\": \"TEXT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"eu_b\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"count\": \"\",\n \"results\": [\n {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"incididunt_2\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"veniam_d\": {},\n \"Ut2f\": {},\n \"laboris5\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_4_\": {},\n \"in_1\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"proident0b\": {},\n \"Excepteur_6\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"sita\": {},\n \"eiusmod_8b\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"velit__03\": {}\n },\n \"elementType\": \"TEXT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"fugiat__be\": {},\n \"aliqua4\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n },\n {\n \"config\": {\n \"Lorem_c\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NOT_IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation_0d8\": {},\n \"dolor_f7_\": {},\n \"exercitationabc\": {},\n \"nostrud_3\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"labore6f8\": {},\n \"proident_f1\": {},\n \"officia__e2\": {},\n \"ea_749\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"mollit_\": {},\n \"culpa_59\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"voluptate1\": {},\n \"tempor2a\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eb93017c-1c12-46f0-8ebc-46eff9e4f062", + "id": "ee3ebbe6-4c6d-4197-b308-657ad2c8ea79", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -31956,7 +31956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b01ea71-707e-45a4-8d7d-0ff051375c37", + "id": "94df4605-d0d5-4809-96ac-6f052ba2142a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -32036,7 +32036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1483ffc7-59ee-42c0-a781-360e67e21aea", + "id": "4c93a283-2e0a-4e47-a843-6a39dc943322", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -32116,7 +32116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7b24cee-b245-40f8-b5fa-996772583850", + "id": "8dffb1d7-4979-429b-a32a-2def93827853", "name": "Too many requests", "originalRequest": { "url": { @@ -32196,7 +32196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b0061f8-939e-4f69-a6f0-6fd2a8e0ec12", + "id": "36157f0f-8e9a-4f95-ba8e-0d5508cd96bf", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -32282,7 +32282,7 @@ } }, { - "id": "7a108642-9fe7-4a66-be73-914da71c4b77", + "id": "46c8dc03-3256-417c-9c93-f63724612782", "name": "Creates a form definition.", "request": { "name": "Creates a form definition.", @@ -32310,7 +32310,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ut_b\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"dolore83a\": {},\n \"voluptate0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nulla15\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"eiusmode\": {},\n \"eu_777\": {},\n \"qui_add\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ute32\": {},\n \"temporb\": {},\n \"in_f_6\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"commodo_8\": {},\n \"sunt_7\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"id_751\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"eiusmod_1\": {},\n \"Duis6\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"aliqua60_\": {},\n \"estef_\": {},\n \"pariatur_4\": {},\n \"consecteture6c\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"Excepteur_7\": {},\n \"esse_c3\": {},\n \"nisi_6\": {},\n \"ut06f\": {}\n },\n \"effectType\": \"HIDE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"in_0\": {},\n \"veniam_f9d\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_d\": {},\n \"dolor_de5\": {},\n \"ea_f4f\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32321,7 +32321,7 @@ }, "response": [ { - "id": "d573a727-6710-4471-a59d-2e228e3316e9", + "id": "c3226bb4-1b94-4fb0-a7d5-8a4b5bbfe485", "name": "Returns a new form definition", "originalRequest": { "url": { @@ -32355,7 +32355,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ut_b\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"dolore83a\": {},\n \"voluptate0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nulla15\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"eiusmode\": {},\n \"eu_777\": {},\n \"qui_add\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ute32\": {},\n \"temporb\": {},\n \"in_f_6\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"commodo_8\": {},\n \"sunt_7\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"id_751\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"eiusmod_1\": {},\n \"Duis6\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"aliqua60_\": {},\n \"estef_\": {},\n \"pariatur_4\": {},\n \"consecteture6c\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"Excepteur_7\": {},\n \"esse_c3\": {},\n \"nisi_6\": {},\n \"ut06f\": {}\n },\n \"effectType\": \"HIDE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"in_0\": {},\n \"veniam_f9d\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_d\": {},\n \"dolor_de5\": {},\n \"ea_f4f\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32372,12 +32372,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"do_18\": {},\n \"Excepteur_71\": {},\n \"Ut_aa\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"irurea32\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrud27\": {},\n \"deserunt_86\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"commodo_4\": {},\n \"aliquip_f\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"enim3\": {}\n },\n \"elementType\": \"DATE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"Ut_58\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n}", + "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"sitb91\": {},\n \"qui_a7\": {},\n \"commodo9f3\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"elit65\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"deserunte8\": {},\n \"Excepteur_1f5\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n },\n {\n \"config\": {\n \"Lorem_774\": {},\n \"amet3\": {},\n \"Duis_2da\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"laborec9a\": {},\n \"consectetur_28f\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"sed777\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d33144d6-9f18-4680-95fe-af10d0c8938c", + "id": "5a137703-edcb-42a1-80d0-7e4e3c6699cd", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -32411,7 +32411,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ut_b\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"dolore83a\": {},\n \"voluptate0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nulla15\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"eiusmode\": {},\n \"eu_777\": {},\n \"qui_add\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ute32\": {},\n \"temporb\": {},\n \"in_f_6\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"commodo_8\": {},\n \"sunt_7\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"id_751\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"eiusmod_1\": {},\n \"Duis6\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"aliqua60_\": {},\n \"estef_\": {},\n \"pariatur_4\": {},\n \"consecteture6c\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"Excepteur_7\": {},\n \"esse_c3\": {},\n \"nisi_6\": {},\n \"ut06f\": {}\n },\n \"effectType\": \"HIDE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"in_0\": {},\n \"veniam_f9d\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_d\": {},\n \"dolor_de5\": {},\n \"ea_f4f\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32433,7 +32433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef569155-0485-486b-ac7d-998785e2b05d", + "id": "ea61d1e9-1542-4fad-9ab4-9b2bd56017dd", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -32467,7 +32467,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ut_b\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"dolore83a\": {},\n \"voluptate0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nulla15\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"eiusmode\": {},\n \"eu_777\": {},\n \"qui_add\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ute32\": {},\n \"temporb\": {},\n \"in_f_6\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"commodo_8\": {},\n \"sunt_7\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"id_751\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"eiusmod_1\": {},\n \"Duis6\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"aliqua60_\": {},\n \"estef_\": {},\n \"pariatur_4\": {},\n \"consecteture6c\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"Excepteur_7\": {},\n \"esse_c3\": {},\n \"nisi_6\": {},\n \"ut06f\": {}\n },\n \"effectType\": \"HIDE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"in_0\": {},\n \"veniam_f9d\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_d\": {},\n \"dolor_de5\": {},\n \"ea_f4f\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32489,7 +32489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4f419bc-8263-4982-817d-7301d48b9048", + "id": "d26c1654-d7ec-4ee5-94eb-4ccac69b95f1", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -32523,7 +32523,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ut_b\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"dolore83a\": {},\n \"voluptate0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nulla15\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"eiusmode\": {},\n \"eu_777\": {},\n \"qui_add\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ute32\": {},\n \"temporb\": {},\n \"in_f_6\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"commodo_8\": {},\n \"sunt_7\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"id_751\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"eiusmod_1\": {},\n \"Duis6\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"aliqua60_\": {},\n \"estef_\": {},\n \"pariatur_4\": {},\n \"consecteture6c\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"Excepteur_7\": {},\n \"esse_c3\": {},\n \"nisi_6\": {},\n \"ut06f\": {}\n },\n \"effectType\": \"HIDE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"in_0\": {},\n \"veniam_f9d\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_d\": {},\n \"dolor_de5\": {},\n \"ea_f4f\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32545,7 +32545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "914ee7f6-723c-4537-86b1-680840b388f8", + "id": "3d743eeb-87fd-4474-9d76-87ca93ce896e", "name": "Too many requests", "originalRequest": { "url": { @@ -32579,7 +32579,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ut_b\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"dolore83a\": {},\n \"voluptate0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nulla15\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"eiusmode\": {},\n \"eu_777\": {},\n \"qui_add\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ute32\": {},\n \"temporb\": {},\n \"in_f_6\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"commodo_8\": {},\n \"sunt_7\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"id_751\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"eiusmod_1\": {},\n \"Duis6\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"aliqua60_\": {},\n \"estef_\": {},\n \"pariatur_4\": {},\n \"consecteture6c\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"Excepteur_7\": {},\n \"esse_c3\": {},\n \"nisi_6\": {},\n \"ut06f\": {}\n },\n \"effectType\": \"HIDE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"in_0\": {},\n \"veniam_f9d\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_d\": {},\n \"dolor_de5\": {},\n \"ea_f4f\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32601,7 +32601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36c6a5ca-ac0b-4f65-8fdd-4912a4124c77", + "id": "de89d367-375d-447e-96fb-08fbfcb6345d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -32635,7 +32635,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ut_b\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"dolore83a\": {},\n \"voluptate0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nulla15\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"eiusmode\": {},\n \"eu_777\": {},\n \"qui_add\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ute32\": {},\n \"temporb\": {},\n \"in_f_6\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"commodo_8\": {},\n \"sunt_7\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"id_751\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"eiusmod_1\": {},\n \"Duis6\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"aliqua60_\": {},\n \"estef_\": {},\n \"pariatur_4\": {},\n \"consecteture6c\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"Excepteur_7\": {},\n \"esse_c3\": {},\n \"nisi_6\": {},\n \"ut06f\": {}\n },\n \"effectType\": \"HIDE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"in_0\": {},\n \"veniam_f9d\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_d\": {},\n \"dolor_de5\": {},\n \"ea_f4f\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32663,7 +32663,7 @@ } }, { - "id": "87a0d677-5780-4028-9393-8ffab718372a", + "id": "9fd05510-fd55-44ad-b087-6fde6cee7b5e", "name": "Return a form definition.", "request": { "name": "Return a form definition.", @@ -32704,7 +32704,7 @@ }, "response": [ { - "id": "9bca551e-258a-4fef-95a2-5109036cb0b5", + "id": "d715a17e-38d7-4926-ae23-6ae89c13102b", "name": "Returns a form definition", "originalRequest": { "url": { @@ -32743,12 +32743,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"do_18\": {},\n \"Excepteur_71\": {},\n \"Ut_aa\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"irurea32\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrud27\": {},\n \"deserunt_86\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"commodo_4\": {},\n \"aliquip_f\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"enim3\": {}\n },\n \"elementType\": \"DATE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"Ut_58\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n}", + "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"sitb91\": {},\n \"qui_a7\": {},\n \"commodo9f3\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"elit65\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"deserunte8\": {},\n \"Excepteur_1f5\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n },\n {\n \"config\": {\n \"Lorem_774\": {},\n \"amet3\": {},\n \"Duis_2da\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"laborec9a\": {},\n \"consectetur_28f\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"sed777\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2a9a87bd-f505-45a6-b0f6-42a3645e2649", + "id": "a56a1cce-506d-4de0-8612-37aec571d411", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -32792,7 +32792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "364f0c23-0151-4e11-aca5-3cd6f0ca409e", + "id": "33a2d9fb-2dce-45ea-afc9-b0e35ec970fe", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -32836,7 +32836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf4d980a-d0f1-4abf-82b4-70e6cbc3efde", + "id": "c7cd2ed0-7182-48b2-86a2-4147f66fe11b", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -32880,7 +32880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d5904cb-8a78-4d35-bf09-cc493e9e523e", + "id": "7dad852a-5b20-4278-a2d2-be42ef1a6c20", "name": "An error with the item not found", "originalRequest": { "url": { @@ -32924,7 +32924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd16ca0b-695a-44cf-8539-7b983158b353", + "id": "baf9a2d6-8c3b-4e0a-81c6-438d5adcfeeb", "name": "Too many requests", "originalRequest": { "url": { @@ -32968,7 +32968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba8e01f2-47fe-49fd-bfde-120dff483446", + "id": "0a6bcd8b-a293-41f0-bc2b-2ca8042dd36d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -33018,7 +33018,7 @@ } }, { - "id": "a92e3462-83ac-48b8-9500-65e0e2f5485a", + "id": "e50fc839-3f41-4160-9088-546ad193677d", "name": "Deletes a form definition.", "request": { "name": "Deletes a form definition.", @@ -33059,7 +33059,7 @@ }, "response": [ { - "id": "eb203d3c-6692-4501-8a28-5e0aa996bf0f", + "id": "1555d3e1-3457-4d61-845e-6150725e0aac", "name": "Returns an empty body", "originalRequest": { "url": { @@ -33103,7 +33103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b26441ce-3748-47ea-8ab0-2189d9d4b65c", + "id": "766a13c5-eb44-495b-b514-0828f7b792d7", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -33147,7 +33147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d15934f-d66e-43ca-95f0-3a96e0e0b6ef", + "id": "274ddf14-49ff-44c6-b6da-0f6cd3295331", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -33191,7 +33191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef31bc93-c30e-4f54-bb2e-900bd4bf367a", + "id": "a5926f66-ceb3-4d82-9cd4-f7797a4f329c", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -33235,7 +33235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "669929f7-a01e-4f38-81f4-4ce08116c650", + "id": "9364ba28-fbfc-49f4-88ba-024289ccf208", "name": "An error with the item not found", "originalRequest": { "url": { @@ -33279,7 +33279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49c8a028-0b26-486c-a04f-c5d539e8f391", + "id": "f4574be5-b145-498a-ab05-7dbb0b329a14", "name": "Too many requests", "originalRequest": { "url": { @@ -33323,7 +33323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9abb6d24-578b-4ecb-a260-2bda921bc8c7", + "id": "79bf8ac3-0fde-4d76-90bd-9bbe55a89fa9", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -33373,7 +33373,7 @@ } }, { - "id": "84e5b59a-3bd8-411f-996f-0f391bc91ce7", + "id": "18f353a3-e731-4409-9cf8-d105c603d599", "name": "Patch a form definition.", "request": { "name": "Patch a form definition.", @@ -33416,7 +33416,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33427,7 +33427,7 @@ }, "response": [ { - "id": "bd18cb95-eb00-4dec-a05d-4cc4cd8c5040", + "id": "7105e41a-c678-4db6-bce6-9c78e8e81d28", "name": "Returns the form definition updated", "originalRequest": { "url": { @@ -33462,7 +33462,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33479,12 +33479,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"do_18\": {},\n \"Excepteur_71\": {},\n \"Ut_aa\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"irurea32\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrud27\": {},\n \"deserunt_86\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"commodo_4\": {},\n \"aliquip_f\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"enim3\": {}\n },\n \"elementType\": \"DATE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"Ut_58\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n}", + "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"sitb91\": {},\n \"qui_a7\": {},\n \"commodo9f3\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"elit65\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"deserunte8\": {},\n \"Excepteur_1f5\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n },\n {\n \"config\": {\n \"Lorem_774\": {},\n \"amet3\": {},\n \"Duis_2da\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"laborec9a\": {},\n \"consectetur_28f\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"sed777\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5965e0ca-b179-42ad-811a-dbdef0ecf15f", + "id": "86dd5a78-28e3-4888-a1fc-e9acdaf104da", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -33519,7 +33519,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33541,7 +33541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "625f2f86-e3e1-4a1d-9aaf-8806c83f93d5", + "id": "a963fb7f-01db-4492-b75c-022eddf7c6b1", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -33576,7 +33576,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33598,7 +33598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6e7098b-a54a-4ae3-8342-a102dd72b0ba", + "id": "830c1188-92b6-44c9-9c7e-51d86af1aa67", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -33633,7 +33633,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33655,7 +33655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76cd5119-f18d-4684-bd84-588412b8cbe1", + "id": "49f61fc6-9c5b-4ea0-b40b-f5a1107543f9", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -33690,7 +33690,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33712,7 +33712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8786c9eb-a1c6-40e6-a5d8-4b0f380ab5d8", + "id": "39ad66d2-9c8d-43a8-96a4-2d018da6e41b", "name": "Too many requests", "originalRequest": { "url": { @@ -33747,7 +33747,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33769,7 +33769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca5e5d6f-3be8-4a61-997c-6d91519eaeb0", + "id": "c25f708f-6e2a-4a2c-be5b-5bd03e057d1a", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -33804,7 +33804,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33832,7 +33832,7 @@ } }, { - "id": "b28a7aa5-e3db-4d4c-86f6-3139198f1144", + "id": "9c3c0f7e-5a92-41ec-a1e6-7e2f3d20168e", "name": "Preview form definition data source.", "request": { "name": "Preview form definition data source.", @@ -33901,7 +33901,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"identities\",\n \"identities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accessprofiles\",\n \"accessprofiles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33912,7 +33912,7 @@ }, "response": [ { - "id": "ba42186a-f961-4c07-b999-e406a45b8192", + "id": "9bd664f4-3d7f-4fc0-8bcf-640d99efba81", "name": "Returns a preview of a form definition data source", "originalRequest": { "url": { @@ -33976,7 +33976,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"identities\",\n \"identities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accessprofiles\",\n \"accessprofiles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33998,7 +33998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dbd7661-f177-4802-920e-2066b2928fb6", + "id": "1dfb9d21-05c2-4b38-addd-fad7ca8b48e2", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -34062,7 +34062,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"identities\",\n \"identities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accessprofiles\",\n \"accessprofiles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34084,7 +34084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64698eb0-b127-4fe0-993f-3fb547af0391", + "id": "7e084bf1-557b-474e-b905-6d24d207552f", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -34148,7 +34148,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"identities\",\n \"identities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accessprofiles\",\n \"accessprofiles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34170,7 +34170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "338e4b02-c199-4c33-88c7-b9332abc8832", + "id": "6ef0c488-45a2-4daf-8e51-48ff8e333bb9", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -34234,7 +34234,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"identities\",\n \"identities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accessprofiles\",\n \"accessprofiles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34256,7 +34256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54de2d98-f5b7-43e2-a558-ff04319a224c", + "id": "d7210c01-a9df-4f0e-a517-45b8f489cac2", "name": "An error with the item not found", "originalRequest": { "url": { @@ -34320,7 +34320,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"identities\",\n \"identities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accessprofiles\",\n \"accessprofiles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34342,7 +34342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfb40f52-57a8-47b9-9f8e-29a33c468ebc", + "id": "2d84900f-4f05-496a-ba30-3bc18692cd62", "name": "Too many requests", "originalRequest": { "url": { @@ -34406,7 +34406,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"identities\",\n \"identities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accessprofiles\",\n \"accessprofiles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34428,7 +34428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81fd0e3b-462b-4fb0-8ef8-3fe269f57912", + "id": "e1bbb35c-cde9-48f0-87f7-c1eef3b65dd0", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -34492,7 +34492,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"identities\",\n \"identities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accessprofiles\",\n \"accessprofiles\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34520,7 +34520,7 @@ } }, { - "id": "c1e546f6-612b-47c2-b9e1-77aac01c78d7", + "id": "2d364351-69c7-4ffe-b296-04a8cd780184", "name": "List form definitions by tenant.", "request": { "name": "List form definitions by tenant.", @@ -34587,7 +34587,7 @@ }, "response": [ { - "id": "92ebf4c3-187c-4868-9460-35d5f7fb58f5", + "id": "35506d81-a59e-4045-a2e9-34be91f10738", "name": "Returns a list of form definition objects by tenant used by SP-Config", "originalRequest": { "url": { @@ -34663,12 +34663,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"cupidatat7b8\": {},\n \"commodo_76\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"deserunt_1e\": {},\n \"irure_0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo_2bf\": {},\n \"commodo_6\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"consectetur_3_\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolor1af\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"dolor_0\": {},\n \"in2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"aliquipe1\": {},\n \"pariatur75\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"quia\": {},\n \"do7fd\": {},\n \"aliquipa\": {},\n \"dolorc\": {},\n \"veniam_7\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nisi_4e\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"sunt__1\": {},\n \"id_c\": {},\n \"laboris_0f6\": {},\n \"ea_ced\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ea99\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"utc\": {},\n \"commodo3a\": {},\n \"dolore_d07\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "body": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ex1\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"deserunt_f2c\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_9e\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"et45\": {},\n \"proidentd\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"irure_c7\": {},\n \"sunt050\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"cupidatatb44\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation2f\": {},\n \"Lorem_fc8\": {},\n \"aliquaec\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"consequat4\": {},\n \"est_97\": {},\n \"labore333\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrud_96d\": {},\n \"ullamcof_\": {},\n \"non_5\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"ea_2\": {},\n \"ex544\": {},\n \"officia7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"do_3\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"esse0d6\": {},\n \"in_ed_\": {},\n \"et884\": {},\n \"consequat_af\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d5a381e-9e1d-40db-ac17-5c79df342462", + "id": "3f3d9819-c034-48c8-9d7b-8514bddc0519", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -34749,7 +34749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e08471d-9733-40d4-a7da-4f70d823a7e4", + "id": "90e58ce8-d0ab-4f0b-969f-31dc645efdfe", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -34830,7 +34830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f86c1111-7026-4545-a3f4-62e63be4fec6", + "id": "c81b3a5e-3e81-4070-bb3d-738c3bd07b04", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -34911,7 +34911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65dbb7c3-023f-4f4a-b8d4-f411bcd8eb65", + "id": "07301f68-d0d9-4771-b7fe-dd6a04c63734", "name": "Too many requests", "originalRequest": { "url": { @@ -34992,7 +34992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03cfdd8e-2d51-4def-8036-4446a8b8419f", + "id": "afbc9ce3-4cda-4e8a-9b41-ffdb668ea2c6", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -35079,7 +35079,7 @@ } }, { - "id": "a451c331-c062-4a20-ad46-31fc7d0c0e4a", + "id": "f111ed6c-2858-4a07-8939-87f9bd7afe82", "name": "Generate JSON Schema dynamically.", "request": { "name": "Generate JSON Schema dynamically.", @@ -35119,7 +35119,7 @@ }, "response": [ { - "id": "5c4e05cf-0b9f-4853-8cc7-4c0a3fe217ac", + "id": "12fc43d6-639f-4e92-8bd2-431e94e26bc2", "name": "Returns a form elements dynamic schema", "originalRequest": { "url": { @@ -35171,12 +35171,12 @@ "value": "application/json" } ], - "body": "{\n \"outputSchema\": {\n \"sit_26\": {},\n \"cupidatat_5\": {}\n }\n}", + "body": "{\n \"outputSchema\": {\n \"qui_5ca\": {},\n \"do_7f\": {}\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d38a11ec-1ee5-4d7a-accd-79cea5c469bf", + "id": "263015f9-5e13-4098-b9da-76faf02370dd", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -35233,7 +35233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b562a877-64d0-47c3-99e1-5a468407e308", + "id": "4bc49c36-4b23-4207-a270-c27689b55a26", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -35290,7 +35290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73ad062c-6c8d-42c1-b08e-7e1502bec9aa", + "id": "c56d6ee6-ef18-445e-8265-144f90fb81d0", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -35347,7 +35347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deebeb33-aed4-4c35-8810-c3e2024aab75", + "id": "9f98f0f0-b5ec-4ae8-97db-43be4db7543a", "name": "An error with the item not found", "originalRequest": { "url": { @@ -35404,7 +35404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddb3025a-b124-458e-9904-1557e720b7af", + "id": "41c5c2ff-6f9e-4c7a-bb76-72ece6511801", "name": "Too many requests", "originalRequest": { "url": { @@ -35461,7 +35461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17a4a6d4-fc6a-4110-ae18-ed98e0c2a270", + "id": "50ff5eea-97f4-40b8-938a-55b73473c203", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -35524,7 +35524,7 @@ } }, { - "id": "2b8d19c2-f7f9-4a33-9a4b-a27e07cd2ba2", + "id": "98e19aa5-3486-4b92-862d-b3d486cf12ef", "name": "Import form definitions from export.", "request": { "name": "Import form definitions from export.", @@ -35553,7 +35553,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"cupidatat7b8\": {},\n \"commodo_76\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"deserunt_1e\": {},\n \"irure_0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo_2bf\": {},\n \"commodo_6\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"consectetur_3_\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolor1af\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"dolor_0\": {},\n \"in2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"aliquipe1\": {},\n \"pariatur75\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"quia\": {},\n \"do7fd\": {},\n \"aliquipa\": {},\n \"dolorc\": {},\n \"veniam_7\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nisi_4e\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"sunt__1\": {},\n \"id_c\": {},\n \"laboris_0f6\": {},\n \"ea_ced\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ea99\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"utc\": {},\n \"commodo3a\": {},\n \"dolore_d07\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ex1\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"deserunt_f2c\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_9e\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"et45\": {},\n \"proidentd\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"irure_c7\": {},\n \"sunt050\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"cupidatatb44\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation2f\": {},\n \"Lorem_fc8\": {},\n \"aliquaec\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"consequat4\": {},\n \"est_97\": {},\n \"labore333\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrud_96d\": {},\n \"ullamcof_\": {},\n \"non_5\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"ea_2\": {},\n \"ex544\": {},\n \"officia7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"do_3\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"esse0d6\": {},\n \"in_ed_\": {},\n \"et884\": {},\n \"consequat_af\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -35564,7 +35564,7 @@ }, "response": [ { - "id": "c1d9a621-6e63-4a5d-bd6e-79d08160dd1c", + "id": "1d2b744e-dabe-4aa6-880f-fdfb3dd0692e", "name": "Returns statuses of those form definition objects imported", "originalRequest": { "url": { @@ -35599,7 +35599,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"cupidatat7b8\": {},\n \"commodo_76\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"deserunt_1e\": {},\n \"irure_0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo_2bf\": {},\n \"commodo_6\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"consectetur_3_\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolor1af\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"dolor_0\": {},\n \"in2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"aliquipe1\": {},\n \"pariatur75\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"quia\": {},\n \"do7fd\": {},\n \"aliquipa\": {},\n \"dolorc\": {},\n \"veniam_7\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nisi_4e\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"sunt__1\": {},\n \"id_c\": {},\n \"laboris_0f6\": {},\n \"ea_ced\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ea99\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"utc\": {},\n \"commodo3a\": {},\n \"dolore_d07\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ex1\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"deserunt_f2c\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_9e\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"et45\": {},\n \"proidentd\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"irure_c7\": {},\n \"sunt050\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"cupidatatb44\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation2f\": {},\n \"Lorem_fc8\": {},\n \"aliquaec\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"consequat4\": {},\n \"est_97\": {},\n \"labore333\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrud_96d\": {},\n \"ullamcof_\": {},\n \"non_5\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"ea_2\": {},\n \"ex544\": {},\n \"officia7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"do_3\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"esse0d6\": {},\n \"in_ed_\": {},\n \"et884\": {},\n \"consequat_af\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -35616,12 +35616,12 @@ "value": "application/json" } ], - "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"aliquip323\": {},\n \"anim_82\": {},\n \"incididunt31\": {},\n \"aliquip_ca4\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"adipisicingb00\": {},\n \"adipisicing7\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ],\n \"importedObjects\": [\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"Excepteur_3\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"proident_309\": {},\n \"Excepteur_db5\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"anima\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"reprehenderit1c\": {},\n \"in_8c1\": {},\n \"culpa794\": {},\n \"enimc04\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"sint62\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"veniam_e36\": {},\n \"sedcba\": {},\n \"Lorem_c93\": {},\n \"veniam_60\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecate\": {},\n \"ea_d0\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"exercitationd\": {},\n \"elit0d\": {},\n \"in_110\": {},\n \"Lorem4d\": {},\n \"exercitationc\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"ex_49\": {},\n \"sunt_921\": {},\n \"amet_a0d\": {},\n \"in_73\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"aliquip_95c\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"cupidatat0\": {},\n \"culpa09\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"ea422\": {}\n },\n \"elementType\": \"TEXT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"mollit_d\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"eiusmod_99\": {},\n \"nostrudf7\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"deserunt3\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"deseruntd\": {},\n \"Lorem40\": {},\n \"Excepteur56f\": {},\n \"eu_e1\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"in_2\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"minim2\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ],\n \"importedObjects\": [\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"reprehenderit3e\": {},\n \"consequata4\": {},\n \"suntf67\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"Duis_e62\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"aute95\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"cillum_9\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"pariatur_2\": {},\n \"do_0\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"sint_ded\": {},\n \"nulla_c70\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"autea8\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"Lorem69\": {},\n \"mollit_7df\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"velit_0bd\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"veniama_9\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"aute7\": {},\n \"Ut_2\": {},\n \"elit_9b_\": {},\n \"nulla_8b4\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"aliquaa_6\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"elit393\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"reprehenderita\": {},\n \"ut_93_\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"ut40\": {},\n \"in_e6\": {},\n \"dolor_03\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"velit35\": {},\n \"esse_172\": {},\n \"ullamco_3\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af0415d4-a004-4e07-a707-5bf595a75e14", + "id": "efe638be-5a31-4154-89db-99b8ab1a668c", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -35656,7 +35656,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"cupidatat7b8\": {},\n \"commodo_76\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"deserunt_1e\": {},\n \"irure_0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo_2bf\": {},\n \"commodo_6\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"consectetur_3_\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolor1af\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"dolor_0\": {},\n \"in2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"aliquipe1\": {},\n \"pariatur75\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"quia\": {},\n \"do7fd\": {},\n \"aliquipa\": {},\n \"dolorc\": {},\n \"veniam_7\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nisi_4e\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"sunt__1\": {},\n \"id_c\": {},\n \"laboris_0f6\": {},\n \"ea_ced\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ea99\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"utc\": {},\n \"commodo3a\": {},\n \"dolore_d07\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ex1\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"deserunt_f2c\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_9e\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"et45\": {},\n \"proidentd\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"irure_c7\": {},\n \"sunt050\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"cupidatatb44\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation2f\": {},\n \"Lorem_fc8\": {},\n \"aliquaec\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"consequat4\": {},\n \"est_97\": {},\n \"labore333\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrud_96d\": {},\n \"ullamcof_\": {},\n \"non_5\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"ea_2\": {},\n \"ex544\": {},\n \"officia7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"do_3\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"esse0d6\": {},\n \"in_ed_\": {},\n \"et884\": {},\n \"consequat_af\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -35678,7 +35678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "727b650a-6734-4d1c-a665-8a2063b97e50", + "id": "82be162e-a2e0-4596-ac4f-0b6fbdfc8bdb", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -35713,7 +35713,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"cupidatat7b8\": {},\n \"commodo_76\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"deserunt_1e\": {},\n \"irure_0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo_2bf\": {},\n \"commodo_6\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"consectetur_3_\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolor1af\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"dolor_0\": {},\n \"in2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"aliquipe1\": {},\n \"pariatur75\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"quia\": {},\n \"do7fd\": {},\n \"aliquipa\": {},\n \"dolorc\": {},\n \"veniam_7\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nisi_4e\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"sunt__1\": {},\n \"id_c\": {},\n \"laboris_0f6\": {},\n \"ea_ced\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ea99\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"utc\": {},\n \"commodo3a\": {},\n \"dolore_d07\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ex1\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"deserunt_f2c\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_9e\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"et45\": {},\n \"proidentd\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"irure_c7\": {},\n \"sunt050\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"cupidatatb44\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation2f\": {},\n \"Lorem_fc8\": {},\n \"aliquaec\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"consequat4\": {},\n \"est_97\": {},\n \"labore333\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrud_96d\": {},\n \"ullamcof_\": {},\n \"non_5\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"ea_2\": {},\n \"ex544\": {},\n \"officia7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"do_3\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"esse0d6\": {},\n \"in_ed_\": {},\n \"et884\": {},\n \"consequat_af\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -35735,7 +35735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0423ddaa-78fe-471f-a910-741bcea6d839", + "id": "2450a53e-f3b6-4f97-84fa-9c4fea46b507", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -35770,7 +35770,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"cupidatat7b8\": {},\n \"commodo_76\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"deserunt_1e\": {},\n \"irure_0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo_2bf\": {},\n \"commodo_6\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"consectetur_3_\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolor1af\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"dolor_0\": {},\n \"in2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"aliquipe1\": {},\n \"pariatur75\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"quia\": {},\n \"do7fd\": {},\n \"aliquipa\": {},\n \"dolorc\": {},\n \"veniam_7\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nisi_4e\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"sunt__1\": {},\n \"id_c\": {},\n \"laboris_0f6\": {},\n \"ea_ced\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ea99\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"utc\": {},\n \"commodo3a\": {},\n \"dolore_d07\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ex1\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"deserunt_f2c\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_9e\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"et45\": {},\n \"proidentd\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"irure_c7\": {},\n \"sunt050\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"cupidatatb44\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation2f\": {},\n \"Lorem_fc8\": {},\n \"aliquaec\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"consequat4\": {},\n \"est_97\": {},\n \"labore333\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrud_96d\": {},\n \"ullamcof_\": {},\n \"non_5\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"ea_2\": {},\n \"ex544\": {},\n \"officia7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"do_3\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"esse0d6\": {},\n \"in_ed_\": {},\n \"et884\": {},\n \"consequat_af\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -35792,7 +35792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "259ea8d7-e807-48bd-b12f-d9f0bd3226a1", + "id": "02065332-c1f3-4adf-a9d4-eb438a84a56b", "name": "Too many requests", "originalRequest": { "url": { @@ -35827,7 +35827,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"cupidatat7b8\": {},\n \"commodo_76\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"deserunt_1e\": {},\n \"irure_0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo_2bf\": {},\n \"commodo_6\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"consectetur_3_\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolor1af\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"dolor_0\": {},\n \"in2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"aliquipe1\": {},\n \"pariatur75\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"quia\": {},\n \"do7fd\": {},\n \"aliquipa\": {},\n \"dolorc\": {},\n \"veniam_7\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nisi_4e\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"sunt__1\": {},\n \"id_c\": {},\n \"laboris_0f6\": {},\n \"ea_ced\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ea99\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"utc\": {},\n \"commodo3a\": {},\n \"dolore_d07\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ex1\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"deserunt_f2c\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_9e\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"et45\": {},\n \"proidentd\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"irure_c7\": {},\n \"sunt050\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"cupidatatb44\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation2f\": {},\n \"Lorem_fc8\": {},\n \"aliquaec\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"consequat4\": {},\n \"est_97\": {},\n \"labore333\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrud_96d\": {},\n \"ullamcof_\": {},\n \"non_5\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"ea_2\": {},\n \"ex544\": {},\n \"officia7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"do_3\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"esse0d6\": {},\n \"in_ed_\": {},\n \"et884\": {},\n \"consequat_af\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -35849,7 +35849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "280d29e8-fb8d-48c3-8df4-120488dce18c", + "id": "95676a41-cb8c-4dfa-a12e-37488035eb1f", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -35884,7 +35884,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"cupidatat7b8\": {},\n \"commodo_76\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"deserunt_1e\": {},\n \"irure_0\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo_2bf\": {},\n \"commodo_6\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"consectetur_3_\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolor1af\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"dolor_0\": {},\n \"in2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"aliquipe1\": {},\n \"pariatur75\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"quia\": {},\n \"do7fd\": {},\n \"aliquipa\": {},\n \"dolorc\": {},\n \"veniam_7\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n },\n {\n \"operator\": \"NOT_EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nisi_4e\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"sunt__1\": {},\n \"id_c\": {},\n \"laboris_0f6\": {},\n \"ea_ced\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ea99\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"utc\": {},\n \"commodo3a\": {},\n \"dolore_d07\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", + "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"ex1\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"deserunt_f2c\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_9e\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"et45\": {},\n \"proidentd\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"irure_c7\": {},\n \"sunt050\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"cupidatatb44\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation2f\": {},\n \"Lorem_fc8\": {},\n \"aliquaec\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"consequat4\": {},\n \"est_97\": {},\n \"labore333\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrud_96d\": {},\n \"ullamcof_\": {},\n \"non_5\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"ea_2\": {},\n \"ex544\": {},\n \"officia7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"do_3\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"esse0d6\": {},\n \"in_ed_\": {},\n \"et884\": {},\n \"consequat_af\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formInput\": [\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n },\n {\n \"description\": \"\",\n \"id\": \"\",\n \"label\": \"\",\n \"type\": \"STRING\"\n }\n ],\n \"id\": \"\",\n \"modified\": \"\",\n \"name\": \"\",\n \"owner\": {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -35912,7 +35912,7 @@ } }, { - "id": "94ef1c7b-d802-4d7e-9650-c6992b09f545", + "id": "fd60f363-c4e5-4744-87f2-c1e0eb2cecae", "name": "List form instances by tenant.", "request": { "name": "List form instances by tenant.", @@ -35941,7 +35941,7 @@ }, "response": [ { - "id": "b7ab04df-a115-47cb-9425-a5c49d062ee9", + "id": "7bdb684c-06c0-40a1-8439-f60eb255248f", "name": "Returns a list of form instances by tenant", "originalRequest": { "url": { @@ -35979,12 +35979,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": \"\",\n \"results\": [\n {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"quis52\": {},\n \"doloref\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"veniam_8bc\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"adipisicing_21b\": {},\n \"reprehenderit_8e2\": {},\n \"labore_54a\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"ut6_\": {},\n \"dolor1\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formData\": {\n \"magna_8ec\": {},\n \"dolore_59a\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"ut7b2\": {},\n \"dolorefff\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"proident_\": {},\n \"Excepteur_91\": {},\n \"in28a\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"ut_58\": {},\n \"non_7e\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"ASSIGNED\"\n },\n {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"Lorem89\": {},\n \"ad0\": {},\n \"Ut_02\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"elitc\": {},\n \"eiusmod_48\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"NOT_IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"ut4\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"qui99c\": {},\n \"eu_a0\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"LIST\"\n }\n ]\n }\n ],\n \"formData\": {\n \"nulla_09\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"nulla554\": {},\n \"veniam_8\": {}\n },\n \"elementType\": \"DATE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"labore455\": {},\n \"Excepteur_\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"laboris_749\": {},\n \"inc5\": {},\n \"commodo_753\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"SUBMITTED\"\n }\n ]\n}", + "body": "{\n \"count\": \"\",\n \"results\": [\n {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"elit_1\": {},\n \"laboref05\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"aliqua021\": {},\n \"irure_60e\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_EW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"EQ\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"sunt_98\": {},\n \"dolor_d\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"adf_\": {}\n },\n \"effectType\": \"HIDE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formData\": {\n \"anim_e8\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"Excepteurf5a\": {},\n \"incididunt24d\": {}\n },\n \"elementType\": \"TEXT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_be\": {}\n },\n \"elementType\": \"DATE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"consequat__62\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"SUBMITTED\"\n },\n {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"Lorema1f\": {},\n \"aute_4c_\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"nostrud_1\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n },\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"ipsum_359\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"esse64\": {},\n \"ex_9c\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NE\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"INPUT\"\n },\n {\n \"operator\": \"NOT_IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formData\": {\n \"deserunt3c_\": {},\n \"dolore_f1\": {},\n \"laborum_14\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"velit8\": {},\n \"Duis7f\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"quis8_\": {},\n \"dolore_4\": {},\n \"aliquip_f\": {}\n },\n \"elementType\": \"TEXT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"laboreddb\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"SUBMITTED\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a05bce3b-304e-462e-bb17-f64be5f5ab66", + "id": "fbe622c5-5746-4f8f-b181-5073217a5d00", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36027,7 +36027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeaa398e-285d-41ba-9037-1de935cc7871", + "id": "8379df56-b0c6-455b-95b8-9740b43941b1", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36070,7 +36070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b053a73d-ea32-44de-a1cd-76ad38c866f4", + "id": "d7debc8f-d2ed-4266-9f03-b51c363759c4", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36113,7 +36113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e6d66e6-81bd-44a9-bc9b-6e8d55025dd1", + "id": "712f81b6-3d13-4fc4-80fe-5df4dc888957", "name": "Too many requests", "originalRequest": { "url": { @@ -36156,7 +36156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c81e7084-def0-4de6-8666-b640b82ce9cc", + "id": "4d01536f-5a9a-424e-be3e-72f844f022f2", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36205,7 +36205,7 @@ } }, { - "id": "a6d6caaf-7c43-456d-9900-6289b6f24541", + "id": "98dd7f3b-aa7c-4ae8-840e-a0b8f6115c95", "name": "Creates a form instance.", "request": { "name": "Creates a form instance.", @@ -36233,7 +36233,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"enim_16\": {},\n \"amet_ab1\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"culpafb4\": {},\n \"Excepteure9\": {},\n \"quia\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36244,7 +36244,7 @@ }, "response": [ { - "id": "098ac63d-1bcd-4941-9ba5-ef565e7911cb", + "id": "776cd98d-8bb3-4df8-9e89-8d599e08b4af", "name": "Returns a new form instance", "originalRequest": { "url": { @@ -36278,7 +36278,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"enim_16\": {},\n \"amet_ab1\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"culpafb4\": {},\n \"Excepteure9\": {},\n \"quia\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36295,12 +36295,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecat32\": {},\n \"anim1b\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"consequat2\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n },\n {\n \"operator\": \"NOT_IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_64d\": {},\n \"sedb34\": {},\n \"id_cb\": {},\n \"non2\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"adipisicing8e0\": {},\n \"dolore_936\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formData\": {\n \"cupidatat_18d\": {},\n \"adipisicing05\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"adipisicing_f3d\": {},\n \"elit56f\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"cillum_820\": {},\n \"quid6\": {},\n \"commodo88\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"laborum_52a\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"COMPLETED\"\n}", + "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"incididunt_1\": {},\n \"dolor_b66\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"nostrud__\": {},\n \"cupidatat_\": {},\n \"irure4_\": {},\n \"dolore_a\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n },\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"ipsum_\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"nisi_b\": {},\n \"id_2\": {},\n \"fugiat_5d7\": {},\n \"reprehenderit93\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n }\n ],\n \"formData\": {\n \"laboris_e9\": {},\n \"culpa_e2\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"dolore_3a2\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in1a5\": {},\n \"reprehenderitf0\": {},\n \"sunt__c4\": {},\n \"magna_efd\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"ad6fe\": {},\n \"quis_86\": {},\n \"doc\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"SUBMITTED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2c10ea2d-ced7-4b68-ab01-1ed445b85437", + "id": "1f73f1a3-ef7c-489f-835b-8e1b21a4e395", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36334,7 +36334,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"enim_16\": {},\n \"amet_ab1\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"culpafb4\": {},\n \"Excepteure9\": {},\n \"quia\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36356,7 +36356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cac3bff-c858-490b-91a6-f60be10450f7", + "id": "168db896-3e1a-4acc-b0db-f4e7a17f453e", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36390,7 +36390,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"enim_16\": {},\n \"amet_ab1\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"culpafb4\": {},\n \"Excepteure9\": {},\n \"quia\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36412,7 +36412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e366c316-76ba-4c35-a9c5-caf08e9f8c30", + "id": "1d3f6a8e-a9cc-4337-a92d-1300fede2a67", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36446,7 +36446,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"enim_16\": {},\n \"amet_ab1\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"culpafb4\": {},\n \"Excepteure9\": {},\n \"quia\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36468,7 +36468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9f8fa0a-62e3-43cb-90dd-65414f402181", + "id": "b3e6ec8b-e317-4ae2-ad6f-2f1f592b15ab", "name": "Too many requests", "originalRequest": { "url": { @@ -36502,7 +36502,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"enim_16\": {},\n \"amet_ab1\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"culpafb4\": {},\n \"Excepteure9\": {},\n \"quia\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36524,7 +36524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "173bb687-fdaa-45ab-8fd3-d9ee5c7ad5ea", + "id": "05b52a9c-7de6-4964-8173-8533d221c132", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36558,7 +36558,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"enim_16\": {},\n \"amet_ab1\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", + "raw": "{\n \"expire\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"culpafb4\": {},\n \"Excepteure9\": {},\n \"quia\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36586,7 +36586,7 @@ } }, { - "id": "6e932bab-113b-4eef-bb96-e8c05b891663", + "id": "eb084b6f-76b8-4fa7-aed0-b20fd00c8f4f", "name": "Returns a form instance.", "request": { "name": "Returns a form instance.", @@ -36627,7 +36627,7 @@ }, "response": [ { - "id": "e5c75e6e-8c8c-463d-8f71-a1af90098ece", + "id": "61d292a9-b97e-402a-9851-dc40de6808b8", "name": "Returns a form instance by its key", "originalRequest": { "url": { @@ -36666,12 +36666,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecat32\": {},\n \"anim1b\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"consequat2\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n },\n {\n \"operator\": \"NOT_IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_64d\": {},\n \"sedb34\": {},\n \"id_cb\": {},\n \"non2\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"adipisicing8e0\": {},\n \"dolore_936\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formData\": {\n \"cupidatat_18d\": {},\n \"adipisicing05\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"adipisicing_f3d\": {},\n \"elit56f\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"cillum_820\": {},\n \"quid6\": {},\n \"commodo88\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"laborum_52a\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"COMPLETED\"\n}", + "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"incididunt_1\": {},\n \"dolor_b66\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"nostrud__\": {},\n \"cupidatat_\": {},\n \"irure4_\": {},\n \"dolore_a\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n },\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"ipsum_\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"nisi_b\": {},\n \"id_2\": {},\n \"fugiat_5d7\": {},\n \"reprehenderit93\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n }\n ],\n \"formData\": {\n \"laboris_e9\": {},\n \"culpa_e2\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"dolore_3a2\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in1a5\": {},\n \"reprehenderitf0\": {},\n \"sunt__c4\": {},\n \"magna_efd\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"ad6fe\": {},\n \"quis_86\": {},\n \"doc\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"SUBMITTED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7414aaae-4d4a-4966-b462-25731658b900", + "id": "fe2b8180-f985-4f03-885a-032100edbbf6", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36715,7 +36715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df67669b-69f8-4a89-8237-46383d39e10e", + "id": "b89f3fd9-f0e1-4974-8dcc-b8215bd4a73d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36759,7 +36759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20add0a0-f4d6-4079-81ce-025db2bb80a4", + "id": "2e734261-3c83-47fc-87d5-0c9db1017ff4", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36803,7 +36803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60abffcc-4e8b-4f1b-b509-13c6c484eec3", + "id": "dab4cb91-1464-4219-8cd7-b6bfc8cfef7f", "name": "An error with the item not found", "originalRequest": { "url": { @@ -36847,7 +36847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0c1e05b-ccc9-429d-8d7e-402c873c7194", + "id": "9bf24c8f-c9fd-4cb4-b623-6e884e2e29ff", "name": "Too many requests", "originalRequest": { "url": { @@ -36891,7 +36891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d877940-e5fc-406c-b7c6-dfe7d38dae20", + "id": "2ec9f295-89cc-4e34-bee6-2b4756e13350", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36941,7 +36941,7 @@ } }, { - "id": "54b49029-1646-47f2-9de3-bdd3c485284c", + "id": "aea0509b-7952-4d4c-9a5d-1b323494260c", "name": "Patch a form instance.", "request": { "name": "Patch a form instance.", @@ -36984,7 +36984,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36995,7 +36995,7 @@ }, "response": [ { - "id": "b9f661f2-5908-417f-8af7-ddeec1d0b1c9", + "id": "6cff3cb9-90a7-4b7f-9bdc-e3777e3ab843", "name": "Returns the form instance updated", "originalRequest": { "url": { @@ -37030,7 +37030,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37047,12 +37047,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecat32\": {},\n \"anim1b\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"consequat2\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"NOT_SW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n },\n {\n \"operator\": \"NOT_IN\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"mollit_64d\": {},\n \"sedb34\": {},\n \"id_cb\": {},\n \"non2\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"adipisicing8e0\": {},\n \"dolore_936\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"operator\": \"SW\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EM\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n }\n ],\n \"formData\": {\n \"cupidatat_18d\": {},\n \"adipisicing05\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"adipisicing_f3d\": {},\n \"elit56f\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"cillum_820\": {},\n \"quid6\": {},\n \"commodo88\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"laborum_52a\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"COMPLETED\"\n}", + "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"incididunt_1\": {},\n \"dolor_b66\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"nostrud__\": {},\n \"cupidatat_\": {},\n \"irure4_\": {},\n \"dolore_a\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"NOT_CO\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"ELEMENT\"\n },\n {\n \"operator\": \"IN\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"ipsum_\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"nisi_b\": {},\n \"id_2\": {},\n \"fugiat_5d7\": {},\n \"reprehenderit93\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\n {\n \"operator\": \"CO\",\n \"source\": \"\",\n \"sourceType\": \"INPUT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n },\n {\n \"operator\": \"EW\",\n \"source\": \"\",\n \"sourceType\": \"ELEMENT\",\n \"value\": {\n \"description\": \"Value is the value based on the ValueType\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n },\n \"valueType\": \"STRING_LIST\"\n }\n ]\n }\n ],\n \"formData\": {\n \"laboris_e9\": {},\n \"culpa_e2\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"dolore_3a2\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in1a5\": {},\n \"reprehenderitf0\": {},\n \"sunt__c4\": {},\n \"magna_efd\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n },\n {\n \"key\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"\",\n \"text\": \"\"\n }\n ],\n \"value\": {\n \"description\": \"Value is the value associated with a Key\",\n \"example\": \"Engineering\",\n \"x-go-name\": \"Value\"\n }\n }\n ],\n \"formInput\": {\n \"ad6fe\": {},\n \"quis_86\": {},\n \"doc\": {}\n },\n \"id\": \"\",\n \"modified\": \"\",\n \"recipients\": [\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"\",\n \"state\": \"SUBMITTED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81f82f6d-a9f9-44d7-bbda-ac344d95887e", + "id": "5c23de29-9298-48ca-8b4d-87dc79813a42", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37087,7 +37087,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37109,7 +37109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b9a73e2-697f-48ce-97dc-46e97766668a", + "id": "165222c3-867c-4872-ad96-50f9b9683f56", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37144,7 +37144,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37166,7 +37166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baf96a4e-ccbb-42e7-92a0-a16d992087a3", + "id": "ecd13d29-e622-4175-9546-eb0843d98d4c", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37201,7 +37201,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37223,7 +37223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b748198-e876-40c8-a0d8-addaf08c12b7", + "id": "70dc4656-8554-4d09-9073-dbbd5a5bad3e", "name": "An error with the item not found", "originalRequest": { "url": { @@ -37258,7 +37258,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37280,7 +37280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8d786ea-1c10-4f2c-b575-c574aacb3485", + "id": "59d36903-e2dd-483b-b465-c8e2e782f3e9", "name": "An error with the request property conflicts with stored", "originalRequest": { "url": { @@ -37315,7 +37315,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37337,7 +37337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10dfb0f5-d980-4bcf-9319-0be663dd137b", + "id": "731d7103-3884-4d11-bdc0-1a4deea3bae3", "name": "Too many requests", "originalRequest": { "url": { @@ -37372,7 +37372,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37394,7 +37394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ddc0f64-19a2-44db-bc00-52b0f3f4b55b", + "id": "14dcc4a3-cd6a-4a4c-a9ac-5410d4b7339d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -37429,7 +37429,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"ad_eed\": {}\n },\n {\n \"cupidatat_4\": {},\n \"dolore_8b\": {},\n \"adipisicing_d\": {},\n \"sitad\": {},\n \"anim_9a2\": {}\n }\n]", + "raw": "[\n {\n \"pariatur9\": {}\n },\n {\n \"sunt_57\": {},\n \"consequat__a\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37457,7 +37457,7 @@ } }, { - "id": "b72bf4fc-2939-4e4d-9171-0676ed451223", + "id": "a9abfc1e-2994-4bda-983b-d08be1597382", "name": "Retrieves dynamic data by element.", "request": { "name": "Retrieves dynamic data by element.", @@ -37529,7 +37529,7 @@ }, "response": [ { - "id": "78a5f9cb-789b-4796-bb15-9c676aa30eee", + "id": "f4d6ea96-9abd-461e-ae0c-d24b1da788b1", "name": "Retrieves dynamic data to aid in correctly completing a valid form by form element ID from data source configuration", "originalRequest": { "url": { @@ -37594,7 +37594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a3bb68c-c71e-470d-aa32-7e431226f0ad", + "id": "2c57f74c-e88a-478a-808e-b4aedecb1863", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37659,7 +37659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63e81c0e-92d1-4dc2-b690-55cedab01a67", + "id": "038fe0fe-4200-4519-a15e-3ebb828e8b9c", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37724,7 +37724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5abd0141-5bd8-44c0-abef-9db8ff2dc039", + "id": "9d0778d0-2dbe-4740-b320-1a9ad5ea4a22", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37789,7 +37789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7508bdbd-55bd-4942-8a6e-41661c6571a4", + "id": "57a25880-cd67-4ad0-89df-250d8c375164", "name": "An error with the item not found", "originalRequest": { "url": { @@ -37854,7 +37854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02718252-65c9-4ada-ab25-ab32384bed57", + "id": "1449855f-db9b-4a1a-b0d7-9d111295faed", "name": "Too many requests", "originalRequest": { "url": { @@ -37919,7 +37919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca17cae2-a2a2-42fa-adaa-d7fe0d5e2bd9", + "id": "5d1dbbf1-9378-4358-a637-7deb7f362d73", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -37990,7 +37990,7 @@ } }, { - "id": "581961ec-eecb-4ffd-bcfd-cffeebc22ea3", + "id": "60bb90d3-450a-4c10-bc1a-09b904118398", "name": "List predefined select options.", "request": { "name": "List predefined select options.", @@ -38020,7 +38020,7 @@ }, "response": [ { - "id": "dc976c31-3154-497b-8e93-eae667d20b4d", + "id": "5e96e75e-97c4-4b74-bce5-377004ce09be", "name": "Returns a list of available predefined select options", "originalRequest": { "url": { @@ -38064,7 +38064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c972b4c-d9a3-44a6-8ac0-ec40ced5faef", + "id": "ddc8026f-5e01-45f4-aa8d-0e842a862037", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -38108,7 +38108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69a67a90-3d18-4e37-b661-caf3f8f9bef8", + "id": "6b1502d8-9065-4a9e-bedf-226e112b622d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -38152,7 +38152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03f79434-89bc-4ca1-9bc2-2c620d87b217", + "id": "e09020ee-2f9a-45d2-b614-da74dda42882", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -38196,7 +38196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9238c99-9e15-41a2-85d0-a23314981dd1", + "id": "62b88dd5-b898-4973-a97a-c2f24444ce7a", "name": "Too many requests", "originalRequest": { "url": { @@ -38240,7 +38240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89e0b477-b22c-404d-9c16-adc3237d723b", + "id": "8d1fdfa5-4517-4c7b-bb10-d42551f00ffc", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -38296,7 +38296,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/idn/api/beta/update-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/idn/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": "d47bb9bb-1c26-484a-862e-d1bd0fe49ead", + "id": "076fe43a-58b9-46f1-86e8-850a4b0cc619", "name": "Create Custom Password Instructions", "request": { "name": "Create Custom Password Instructions", @@ -38327,7 +38327,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"mfa:select\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -38338,7 +38338,7 @@ }, "response": [ { - "id": "08f47fa0-2fc4-49e3-8002-959add4ffd30", + "id": "64ca5c75-3b5b-4de0-b8cd-0584fcd7becd", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -38372,7 +38372,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"mfa:select\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -38389,12 +38389,12 @@ "value": "application/json" } ], - "body": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "body": "{\n \"pageId\": \"mfa:select\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "96a46029-4a77-45f1-acb5-800686a5bd89", + "id": "9cd43f79-1dd4-454b-be10-bb323fb2a307", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38428,7 +38428,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"mfa:select\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -38445,12 +38445,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5ed92a0-7205-4171-bf05-de76312ef6a2", + "id": "ad0aac68-db5c-4d3e-aad7-cf6ced9b022f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38484,7 +38484,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"mfa:select\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -38501,12 +38501,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb07ff71-defc-4d6c-af24-fd4e118253b5", + "id": "f99b5f6a-6748-40dc-b1fe-c8965616e5f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38540,7 +38540,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"mfa:select\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -38557,7 +38557,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38568,7 +38568,7 @@ } }, { - "id": "cf827dc2-5106-48f4-82b6-525517c773f3", + "id": "18d520bb-30ac-44e7-8f6b-2faa71770a25", "name": "Get Custom Password Instructions by Page ID", "request": { "name": "Get Custom Password Instructions by Page ID", @@ -38598,7 +38598,7 @@ "variable": [ { "type": "any", - "value": "mfa:enter-code", + "value": "unlock-account:finish", "key": "pageId", "disabled": true, "description": { @@ -38619,7 +38619,7 @@ }, "response": [ { - "id": "0fb32884-0f3b-4e3e-a653-141978b206e4", + "id": "05fd5583-7edb-4725-9840-63145591c20c", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -38668,12 +38668,12 @@ "value": "application/json" } ], - "body": "{\n \"pageId\": \"change-password:finish\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "body": "{\n \"pageId\": \"mfa:select\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b84c543e-12b2-40d1-a4ef-fc3729817cd9", + "id": "dbba9c98-7c49-497b-9d83-de658301fd7a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38722,12 +38722,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a27f3ae4-a194-43fb-bd7d-764d5937f875", + "id": "6a611051-87d6-4197-9c48-04794ab80e42", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38776,12 +38776,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c80d372-4b58-4e9e-9916-3741deace3e9", + "id": "cf6ac37b-e23e-4b40-90eb-f4cb99801576", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38830,12 +38830,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10d6d1f6-4cec-4af6-a15d-11c767de0857", + "id": "d24b15e1-c5ee-40fb-8d62-2ee2e3fd30f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38884,7 +38884,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38895,7 +38895,7 @@ } }, { - "id": "ed8ed331-ef99-445c-b463-8d2b9fc6d67f", + "id": "f07c202b-6184-4782-b59d-d5b9d5eb557a", "name": "Delete Custom Password Instructions by page ID", "request": { "name": "Delete Custom Password Instructions by page ID", @@ -38925,7 +38925,7 @@ "variable": [ { "type": "any", - "value": "mfa:enter-code", + "value": "unlock-account:finish", "key": "pageId", "disabled": true, "description": { @@ -38946,7 +38946,7 @@ }, "response": [ { - "id": "edef327c-01d9-45e4-aa0c-d5fbca261006", + "id": "7670c1b1-1235-4752-9f8c-1ff3519d03c2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -38990,7 +38990,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6f2bb603-3f5f-4ff3-b9c2-713c49387ca6", + "id": "d8078f0b-bd69-4ae7-a4e9-ef11431d19e6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39039,12 +39039,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3f71608c-1056-47e2-b9a6-64b3cd8d777b", + "id": "08d20dd5-c7ad-4440-8307-1a442ebd750c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39093,12 +39093,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83eadfba-3bfc-455b-ae90-4c5d0cf06d47", + "id": "65a7ae26-93ef-4766-af41-97aaffd933a3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -39147,12 +39147,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e260a5f6-bb28-4e12-ba6f-7315324db7a1", + "id": "80cd5147-5689-4e22-8e5c-88b983dea479", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39201,7 +39201,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -39218,7 +39218,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 IdentityNow in certifications, access profiles, and roles.\nAdministrators in IdentityNow 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 IdentityNow.\nEntitlements are often grouped into access profiles, and access profiles themselves are often grouped into roles, the broadest form of access in IdentityNow.\n\nFor example, an Active Directory source in IdentityNow 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\nIdentityNow 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 IdentityNow.\nIdentityNow 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 IdentityNow.\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": "2f1855e6-fe23-46c8-8f13-96a81eeec240", + "id": "fd02a2ff-4e6a-4ad0-acf1-980586dfbb73", "name": "Gets a list of entitlements.", "request": { "name": "Gets a list of entitlements.", @@ -39329,7 +39329,7 @@ }, "response": [ { - "id": "1a8a3082-4dfa-43d3-afd9-809ee72f59f1", + "id": "dd4cda7f-eab8-40d0-b257-b08acd1244c5", "name": "List of entitlements", "originalRequest": { "url": { @@ -39449,12 +39449,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"veniam_3\": \"aliqua dolore\",\n \"culpa_bd\": 78267857.05016205,\n \"sed_be\": 17620284\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"sintf\": -19630710,\n \"sunt_d\": \"ullamco commodo consectetur tempor sit\",\n \"enimd\": -90129768\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"cillum129\": \"dolore\",\n \"ea_13\": -51899720,\n \"ut_e37\": false,\n \"aliquipf3\": -50433480\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"occaecat_4\": \"magna adipisicing\",\n \"doloreb7\": -67324192,\n \"ead50\": -91382880,\n \"id2_d\": false\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15143603-a8df-4705-81ef-c6898a20dc56", + "id": "7fdc588a-aa79-4942-b110-b0b08eb54cbd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39574,12 +39574,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0f6b7e32-332a-4f42-b554-a0cb147b0154", + "id": "46a7207d-db90-402a-b44f-f0177f6abbab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39704,7 +39704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee43e198-0d05-4565-b053-6419efd3f30e", + "id": "0f81ff76-35cb-4cfb-9444-f5b5486941b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39824,12 +39824,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86f7cd49-c408-4e29-8473-e209636bcf8f", + "id": "e7e8eea2-a9bd-471d-9fbd-adf612eaeaed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39954,7 +39954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "878047c7-9154-45dd-85bc-8f0ad242f35c", + "id": "d7e4eb9c-2221-4874-8e10-dfd33955eb24", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40074,7 +40074,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40085,7 +40085,7 @@ } }, { - "id": "6edb267b-c8cf-423a-ac5d-b770ecc93bb9", + "id": "63c1d032-c221-49ee-8da9-9e31ebb1cebb", "name": "Get an entitlement", "request": { "name": "Get an entitlement", @@ -40126,7 +40126,7 @@ }, "response": [ { - "id": "3781135d-1742-49bb-8ae5-697b36795fc4", + "id": "a7c5c107-7439-4c9f-b07d-2f04a622f22d", "name": "An entitlement", "originalRequest": { "url": { @@ -40165,12 +40165,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"exf6\": true,\n \"officia5\": 56174679\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"qui_a96\": 5653450,\n \"sede\": 93743335.78236258,\n \"occaecat_7\": -84101605\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d34af9b-ac6b-406f-bad7-5182cddc2b21", + "id": "63a4803d-224d-4e08-ae9a-e76bc11aad9e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40209,12 +40209,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1d3a32bb-a4de-4478-836f-587d3f4e2acb", + "id": "674f7b87-5100-448c-9717-268e18f84fbb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40258,7 +40258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4c6b047-067b-4f08-8ae4-36827b407560", + "id": "b6affe7e-8745-499b-8bf4-b9f57acf02aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40297,12 +40297,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eb44acf5-b83a-4ad2-821a-af835b187915", + "id": "1f4f297c-ce69-45c3-b8ed-44e4f771b794", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40341,12 +40341,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6a5b7ae-3ece-4042-b74d-116cb465c36e", + "id": "71d7db43-8393-4d98-98c8-2a3093c24930", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40390,7 +40390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bb16600-19d2-4dad-8d7a-d21964ca7092", + "id": "bbde1e02-e934-44e9-96dc-d76a7e7d079f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40429,7 +40429,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40440,7 +40440,7 @@ } }, { - "id": "895f55b0-8fbb-4d7b-ba11-0457109f43b4", + "id": "0a0caa3c-6482-4c92-88f4-2b1763afb4e6", "name": "Patch an entitlement", "request": { "name": "Patch an entitlement", @@ -40483,7 +40483,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40494,7 +40494,7 @@ }, "response": [ { - "id": "893d659a-4157-43f1-83a3-63ba2b1f2c6d", + "id": "66d54911-f3e6-4f8b-802f-c9ba3bc10393", "name": "Responds with the entitlement as updated.", "originalRequest": { "url": { @@ -40529,7 +40529,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40546,12 +40546,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"exf6\": true,\n \"officia5\": 56174679\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"qui_a96\": 5653450,\n \"sede\": 93743335.78236258,\n \"occaecat_7\": -84101605\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77a24ced-8c90-4806-9859-1de517579648", + "id": "157b7687-05af-45ae-9657-e6bc9984cc4c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40586,7 +40586,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40603,12 +40603,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9828b94a-1ebb-48cd-923f-3658c21e8176", + "id": "cf82869d-771a-475f-b96f-363ef941049d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40643,7 +40643,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40665,7 +40665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fad722f-2797-47ab-a695-7aff8ac41055", + "id": "5db00bf1-6046-40a9-bd24-602d2e3ea232", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40700,7 +40700,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40717,12 +40717,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de815f51-484a-469a-9405-b4ec66af0c87", + "id": "03662ed2-175b-4c7b-8301-a08b2b439c09", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40757,7 +40757,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40774,12 +40774,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "670baf59-036e-4f6e-ade3-0c725d057d56", + "id": "cf838aad-1a2d-4d34-85c3-811e0bba7962", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40814,7 +40814,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40836,7 +40836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87a62f41-3489-4804-b534-2b5834297eb8", + "id": "c11786ad-be83-438d-abb3-2b1ee44ffeb6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40871,7 +40871,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40888,7 +40888,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40899,7 +40899,7 @@ } }, { - "id": "caa78ca7-7349-497f-bbfb-39917eaf2aa7", + "id": "3de60364-574f-4511-99b1-b1476c00c11d", "name": "List of entitlements parents", "request": { "name": "List of entitlements parents", @@ -40987,7 +40987,7 @@ }, "response": [ { - "id": "4a175b09-908f-4f49-912d-e5f8dd0f51e7", + "id": "85438072-09c9-4363-bfe8-722821da70d3", "name": "List of entitlements parents from an entitlement", "originalRequest": { "url": { @@ -41073,12 +41073,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"veniam_3\": \"aliqua dolore\",\n \"culpa_bd\": 78267857.05016205,\n \"sed_be\": 17620284\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"sintf\": -19630710,\n \"sunt_d\": \"ullamco commodo consectetur tempor sit\",\n \"enimd\": -90129768\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"cillum129\": \"dolore\",\n \"ea_13\": -51899720,\n \"ut_e37\": false,\n \"aliquipf3\": -50433480\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"occaecat_4\": \"magna adipisicing\",\n \"doloreb7\": -67324192,\n \"ead50\": -91382880,\n \"id2_d\": false\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea6f12d2-68eb-4b26-a37d-81995d03d64d", + "id": "5d2d88e2-079b-4fa5-927b-a1102d576168", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41164,12 +41164,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44ba71b6-ed9c-47a0-8337-ec5a7f0944a1", + "id": "a2007dbf-2e0d-4428-b956-ee2f635fd149", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41260,7 +41260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c09eb0b-a709-4523-8a5d-afedabee67de", + "id": "47235c44-a6c1-474a-a19f-d926fdfbd56a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41346,12 +41346,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "14aaded8-8ed4-4724-a776-6486b43e13ab", + "id": "e85313e7-1968-4334-8444-0491d353026a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41437,12 +41437,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a54fa01-d549-43e2-931e-aa0c5eccf142", + "id": "49171701-305b-4a85-9f2f-750782ef153e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41533,7 +41533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94b42c01-992e-4dea-8954-19c318557cce", + "id": "3273a300-67ee-441a-86ef-17a37465140e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41619,7 +41619,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -41630,7 +41630,7 @@ } }, { - "id": "b086c173-4790-4195-8897-f5ff2596dfa9", + "id": "4142bdb2-f250-47ae-8055-032c248f8588", "name": "List of entitlements children", "request": { "name": "List of entitlements children", @@ -41718,7 +41718,7 @@ }, "response": [ { - "id": "dba7cdba-2654-4064-9137-8088580d6395", + "id": "a8546ccb-8582-451f-883a-e1ac10fe3a4b", "name": "List of entitlements children from an entitlement", "originalRequest": { "url": { @@ -41804,12 +41804,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"veniam_3\": \"aliqua dolore\",\n \"culpa_bd\": 78267857.05016205,\n \"sed_be\": 17620284\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"sintf\": -19630710,\n \"sunt_d\": \"ullamco commodo consectetur tempor sit\",\n \"enimd\": -90129768\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"cillum129\": \"dolore\",\n \"ea_13\": -51899720,\n \"ut_e37\": false,\n \"aliquipf3\": -50433480\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"sourceSchemaObjectType\": \"\",\n \"privileged\": false,\n \"cloudGoverned\": false,\n \"description\": \"\",\n \"requestable\": false,\n \"attributes\": {\n \"occaecat_4\": \"magna adipisicing\",\n \"doloreb7\": -67324192,\n \"ead50\": -91382880,\n \"id2_d\": false\n },\n \"source\": {\n \"id\": \"\",\n \"type\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n },\n \"directPermissions\": [\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n },\n {\n \"rights\": [\n \"\",\n \"\"\n ],\n \"target\": \"\"\n }\n ],\n \"segments\": [\n \"\",\n \"\"\n ],\n \"manuallyUpdatedFields\": {\n \"DISPLAY_NAME\": false,\n \"DESCRIPTION\": false\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb480b1b-4389-4261-b349-87bcaa903be6", + "id": "1894cc4f-eda8-481b-8e8b-2314cd46baae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41895,12 +41895,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1fb1e094-ddb9-482d-a41c-b182fd3d97cf", + "id": "0eac593c-9b5e-4c10-b978-cca526c27b40", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41991,7 +41991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d908c2d-cf04-482a-8e52-c292297b96fc", + "id": "95e271ba-a9c6-4d0c-8865-902e736030a7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42077,12 +42077,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00dbeb36-e3b1-4071-963b-5aaa6bf6711f", + "id": "d6743a51-81b0-4d66-87c7-899268c0074e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42168,12 +42168,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70771c77-47b6-4eea-bb0b-ef3638c436ea", + "id": "3dd94298-aa2c-4692-8c42-ac6b5e1b3977", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42264,7 +42264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77aa265e-77e9-48bc-af24-cbf467ff42e2", + "id": "ea00153b-64d7-4a85-a76c-87727663d6a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42350,7 +42350,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -42361,7 +42361,7 @@ } }, { - "id": "37b19a9e-4200-4b6a-a2aa-b8e32d185834", + "id": "dbb0c993-aee6-46b2-a7a2-bba2273f210f", "name": "Bulk update an entitlement list", "request": { "name": "Bulk update an entitlement list", @@ -42393,7 +42393,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42404,7 +42404,7 @@ }, "response": [ { - "id": "45557199-8c25-425f-b595-410df8e3fb87", + "id": "dbf66457-923f-4333-b45e-4ff4661fdea8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -42435,7 +42435,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42451,7 +42451,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f0312447-73a4-4b9f-abcb-4514b3ea48bb", + "id": "9249ab29-bf60-4a96-b147-7baff775d3ee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42486,7 +42486,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42503,12 +42503,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f50f1e5-fdb8-4422-8da3-864ff45f65da", + "id": "8d6fd073-ca26-46bd-80a7-c6dcf7d2978e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42543,7 +42543,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42565,7 +42565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0431885d-a906-4444-875a-24abe494afda", + "id": "600a6068-3a22-420c-be21-9f1bbf77ba35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42600,7 +42600,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42617,12 +42617,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5877535e-a2fa-4fb0-a898-ee6024ed7c33", + "id": "7e9d037a-32b8-4e74-b52b-8f04b58ba7da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42657,7 +42657,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42679,7 +42679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c653304e-e100-4d69-9f75-bd344af7f1ae", + "id": "69d1332d-db32-44fa-8193-870f68ac2be3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42714,7 +42714,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42731,7 +42731,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -42742,7 +42742,7 @@ } }, { - "id": "511c373b-d372-46db-88f4-cd18513df8bf", + "id": "7858c131-511f-4cc3-b095-48d094672494", "name": "Get Entitlement Request Config", "request": { "name": "Get Entitlement Request Config", @@ -42784,7 +42784,7 @@ }, "response": [ { - "id": "ed0957df-331a-48f2-9103-8dc6c37ed6c5", + "id": "ee7871d5-4439-4b9b-9687-37d06b07d5f8", "name": "An Entitlement Request Config", "originalRequest": { "url": { @@ -42824,12 +42824,12 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6beeab6c-166d-427a-a763-89e6f04100f1", + "id": "aa3dd299-9730-4945-a946-744e221762eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42869,12 +42869,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "155b5f71-8cc6-4656-a3c9-516efe1af9ab", + "id": "9c33c12d-7203-4858-877c-14dbfb6d561e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42919,7 +42919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "688626c2-cda8-4d95-b8d3-aa57805c4a5d", + "id": "fa7fe3db-649d-4758-bad6-4797e225b23d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42959,12 +42959,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1edcd58e-73c4-46e0-9a88-5f2d8b0c9882", + "id": "19f12190-b64a-4b0f-983e-d4b23fc99c8c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43004,12 +43004,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e1d3e9b-c17a-4cef-9d4a-c4de033ce36c", + "id": "ff07c6e3-fd72-4175-98c9-10fb8c4c3673", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43054,7 +43054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f411f81-85c8-4426-9761-ef0f7c429cce", + "id": "9c91d737-1609-4698-a876-a42ae5f8430c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43094,7 +43094,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43105,7 +43105,7 @@ } }, { - "id": "9fc0b204-3fcc-44fc-abf7-516d50e4ae94", + "id": "fe7097dc-138b-4b57-a160-475cee912a7b", "name": "Replace Entitlement Request Config", "request": { "name": "Replace Entitlement Request Config", @@ -43149,7 +43149,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43160,7 +43160,7 @@ }, "response": [ { - "id": "90aa09fd-e421-484b-a67a-6364607d910b", + "id": "f3724bb3-f0ae-48b8-a5be-179944867d99", "name": "Responds with the entitlement request config as updated.", "originalRequest": { "url": { @@ -43196,7 +43196,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43213,12 +43213,12 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b178771-f4e1-4762-a62a-538bc7271ec3", + "id": "19e3baf3-4b3f-4b7e-a51b-af718984867f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43254,7 +43254,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43271,12 +43271,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c066a1b5-7a16-4bbb-b2b3-f4811bbd275e", + "id": "f8e30cae-d6a7-429e-93d5-a8f414c33913", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43312,7 +43312,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43334,7 +43334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41a54ddf-aff2-4d78-8c8c-dcdfc0903642", + "id": "c6724b77-0878-4682-b249-d2b974d7bed5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43370,7 +43370,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43387,12 +43387,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d9cc2c01-f4c9-4e06-a132-a16c710068a5", + "id": "9cd55beb-d0ad-4c4c-97e8-3cb990d78ba4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43428,7 +43428,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43445,12 +43445,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b4b76e64-f35a-45ca-b607-0adad8eb9817", + "id": "cdd72337-5f63-41d2-8885-10ef1e118fa8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43486,7 +43486,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43508,7 +43508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3273af49-64d3-4b21-9f69-af962b62f81d", + "id": "54205c4f-0a0e-47d0-9f1f-8f84f87bab3a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43544,7 +43544,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43561,7 +43561,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43578,7 +43578,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 IdentityNow.\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 IdentityNow UI.\n", "item": [ { - "id": "901a7b4c-fe84-4936-a5d9-0f1b7b9f23d5", + "id": "1f298edb-de9a-4eef-a72e-ad3950227ee9", "name": "List Governance Groups", "request": { "name": "List Governance Groups", @@ -43644,7 +43644,7 @@ }, "response": [ { - "id": "2d374754-aebd-423e-977e-52d851bb2b81", + "id": "8108c794-9c51-43a1-b62c-22aabfb2840b", "name": "List of Governance Groups", "originalRequest": { "url": { @@ -43719,12 +43719,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n },\n {\n \"owner\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n }\n]", + "body": "[\n {\n \"owner\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n },\n {\n \"owner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "463298a6-2fa8-4f7d-b6fe-444d4115c6ca", + "id": "16fad8ac-e42d-46aa-95b0-73843a56225e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43799,12 +43799,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab03bc21-d878-4270-be56-959fb78c6262", + "id": "d03b0438-076e-450f-8049-2f0a0c160b49", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43884,7 +43884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7df9b37d-7ca1-429b-9e40-927afb7bb84c", + "id": "346f3eae-d921-4b3e-bb31-e35a9e79262a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43959,12 +43959,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97b68c85-a1ba-4612-bd5b-f67c8bf72a95", + "id": "827072d7-3bd9-47c1-a3e0-154b8f5f40d8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44044,7 +44044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c16b8c7a-805e-4e9e-b3cd-f7d3a6afa28b", + "id": "b500f206-c8d9-47da-b56d-f2ef913fb51b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44119,7 +44119,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -44130,7 +44130,7 @@ } }, { - "id": "d6c12e16-cfaa-4dbd-8df5-23270a237b77", + "id": "29409c39-0987-4f13-b283-af7372f94646", "name": "Create a new Governance Group.", "request": { "name": "Create a new Governance Group.", @@ -44161,7 +44161,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44172,7 +44172,7 @@ }, "response": [ { - "id": "b2450e50-d4bd-4cbd-8948-664904ff5ec4", + "id": "c8fce705-b588-4312-8fca-84d0d6434395", "name": "Governance Group object created.", "originalRequest": { "url": { @@ -44206,7 +44206,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44223,12 +44223,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "body": "{\n \"owner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "58d6f89b-154a-4ac9-8be8-2c965380317c", + "id": "b2e20d73-810d-4d07-ba78-0d5a009a4b9d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44262,7 +44262,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44279,12 +44279,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "155feca8-b090-4ac9-aede-5a513b6545fd", + "id": "480d015c-399a-44b7-b47a-cf471b28143e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44318,7 +44318,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44340,7 +44340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a90136b4-8437-4d59-a149-ca7928fab796", + "id": "18a675e5-c82c-4dae-a9e7-e2283287d268", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44374,7 +44374,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44391,12 +44391,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd750451-2454-4358-93ef-ae13293ebbd0", + "id": "ff6f481a-8fc7-4509-a0ad-b1d2fd98c631", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44430,7 +44430,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44452,7 +44452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d243e5d-f276-4a9c-8133-8d53cc0a1bd4", + "id": "ce9cef51-4ccb-4706-bda1-00f54b55bb4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44486,7 +44486,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44503,7 +44503,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -44514,7 +44514,7 @@ } }, { - "id": "37f2663b-052f-4487-9782-67ba1bb2d9d4", + "id": "d31ae0c2-e41d-4cad-973b-ba9f1844c7df", "name": "Get an Governance Groups", "request": { "name": "Get an Governance Groups", @@ -44555,7 +44555,7 @@ }, "response": [ { - "id": "8fcd8962-c244-4e42-9574-bb7d513d1818", + "id": "39f8bb21-c8b6-4bf4-af63-e97875ffe119", "name": "An Governance Groups", "originalRequest": { "url": { @@ -44594,12 +44594,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "body": "{\n \"owner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e1352493-60b2-41e1-b5b8-1e15fdff18ea", + "id": "ebd2e550-95f2-42e6-adac-3834affc8410", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44638,12 +44638,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ba62d516-6aa3-4be0-bff4-db9c60469a54", + "id": "23fbcb64-f1dd-4d62-a3be-47d7180e387c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44687,7 +44687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c01ed99-620a-41d5-9ed7-916024f92a5e", + "id": "14ef68c5-f0be-4703-91de-47126461f377", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44726,12 +44726,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "646620e9-f3e4-4bb0-899d-6dea8587b406", + "id": "8629bda9-8dc2-4fc8-816e-50a7fcd7a866", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44775,7 +44775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b130eb1-0c82-44f2-8e04-5ea40e531734", + "id": "01060985-5a9b-4027-8462-2317900b2894", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44814,7 +44814,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -44831,7 +44831,7 @@ "description": "", "item": [ { - "id": "4863d66e-dcf3-4fc0-9349-be612b18c100", + "id": "b0beab8a-e741-4d78-9e90-b44758d2e7be", "name": "Identity Access Request Recommendations", "request": { "name": "Identity Access Request Recommendations", @@ -44924,7 +44924,7 @@ }, "response": [ { - "id": "b227178b-bb35-4b76-85f0-8de638660449", + "id": "7f1ea028-a303-4189-8b90-df4efacd87fc", "name": "List of access request recommendations for the identityId", "originalRequest": { "url": { @@ -45026,12 +45026,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"ignored\": \"\",\n \"requested\": \"\",\n \"viewed\": \"\",\n \"messages\": [\n {\n \"interpretation\": \"\"\n },\n {\n \"interpretation\": \"\"\n }\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"ignored\": \"\",\n \"requested\": \"\",\n \"viewed\": \"\",\n \"messages\": [\n {\n \"interpretation\": \"\"\n },\n {\n \"interpretation\": \"\"\n }\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ]\n }\n]", + "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"ignored\": \"\",\n \"requested\": \"\",\n \"viewed\": \"\",\n \"messages\": [\n {\n \"interpretation\": \"\"\n },\n {\n \"interpretation\": \"\"\n }\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ]\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"ignored\": \"\",\n \"requested\": \"\",\n \"viewed\": \"\",\n \"messages\": [\n {\n \"interpretation\": \"\"\n },\n {\n \"interpretation\": \"\"\n }\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "23747c9b-919a-4ec8-9ccc-b49a98019629", + "id": "0938e55e-4da9-4806-b5cf-10286d5eb0c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45133,12 +45133,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "65f64e14-9bf1-409f-b705-fdbec82cda44", + "id": "74b2e976-1f3b-4fc2-92f1-01e56ddc3e98", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45245,7 +45245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24453ccf-0827-4977-9282-d83f18b1e80a", + "id": "ff1b0100-b9b0-4d60-8a89-aa46e55b74eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45347,12 +45347,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cf6ad9db-7993-4e7b-81e7-6543670e1d64", + "id": "12136180-18ab-4a6c-97a9-05a761a00c5d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45459,7 +45459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d4ae2aa-f172-4e5a-9afe-41bb8fee787d", + "id": "9d5fc71b-b693-4844-b782-4d0e7dc6afd1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45561,7 +45561,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -45572,7 +45572,7 @@ } }, { - "id": "8e4bfb24-4272-4e21-82e1-81d7acc44d62", + "id": "29835ce1-8547-45e0-8bf4-a19f8495aa49", "name": "Notification of Ignored Access Request Recommendations", "request": { "name": "Notification of Ignored Access Request Recommendations", @@ -45604,7 +45604,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45615,7 +45615,7 @@ }, "response": [ { - "id": "b8fa09ac-7aa6-4159-b90d-54b4b4264fa1", + "id": "bb607939-c5ed-42ec-886a-943022a72f0c", "name": "Recommendation successfully stored as ignored.", "originalRequest": { "url": { @@ -45650,7 +45650,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45667,12 +45667,12 @@ "value": "application/json" } ], - "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n}", + "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ef14d926-18a8-4cf9-a437-7fe8a848a97b", + "id": "a9b53c50-cb12-45de-99bc-0b5c40c49d2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45707,7 +45707,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45724,12 +45724,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "40933c2e-9d0f-4e21-b109-990f50bc2afa", + "id": "fd6e77cd-8d97-4bef-a373-311f5be4c749", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45764,7 +45764,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45786,7 +45786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afdc3c47-3e59-4235-a97e-5300656fab17", + "id": "bf9cad05-3461-45b3-beef-761d2ab88845", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45821,7 +45821,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45838,12 +45838,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "179cab39-063c-464d-ae34-6bd378a779f3", + "id": "e83eea5f-9cc6-4ea5-958e-c0f64ebf7454", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45878,7 +45878,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45900,7 +45900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e160615f-7a50-4c48-8b22-177f29bc0cb9", + "id": "73eccaa0-6e48-452b-b563-1bfbf68f5271", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45935,7 +45935,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -45952,7 +45952,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -45963,7 +45963,7 @@ } }, { - "id": "34c2cb30-5be7-4a52-8bac-b74d832725e2", + "id": "c33f2891-582a-42f5-9f7a-5fbabd85278a", "name": "List of Ignored Access Request Recommendations", "request": { "name": "List of Ignored Access Request Recommendations", @@ -46039,7 +46039,7 @@ }, "response": [ { - "id": "e4eb58f0-7963-453e-8ac3-7d3d1b9a9643", + "id": "5804f16b-7dc7-4121-bf45-706bc002f863", "name": "Returns list of ignored access request recommendations.", "originalRequest": { "url": { @@ -46124,12 +46124,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n }\n]", + "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "697440eb-5c7d-4d14-975d-8ed1fdb5b567", + "id": "721c123c-b544-498f-b119-377adbe84187", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46214,12 +46214,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf2f63b6-6cd8-42c1-9149-535c71477a3d", + "id": "1afa8d06-c9f4-4572-b5e8-d5a6e450d944", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46309,7 +46309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2b29daa-9b4d-4e7a-ad41-08b2416b72b9", + "id": "2d8ad76d-7ea0-4d1e-b3de-929f7c51dd3b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46394,12 +46394,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b97fe927-fc3c-416b-8154-01868bff02d3", + "id": "016b2a0f-e315-408d-ba25-aa2357d7c6e7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46489,7 +46489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cf9ec9e-cede-4b7e-8320-cbca701c13bc", + "id": "48ce90e1-913d-4a38-9631-f15e03b6c42b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46574,7 +46574,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -46585,7 +46585,7 @@ } }, { - "id": "ea8a2d0d-a600-41c8-ae98-64e7f54ee525", + "id": "31bc51bf-9128-4143-a744-91015cfe7a1e", "name": "Notification of Requested Access Request Recommendations", "request": { "name": "Notification of Requested Access Request Recommendations", @@ -46617,7 +46617,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -46628,7 +46628,7 @@ }, "response": [ { - "id": "e1abf35d-8d19-440f-8cb5-caadef0d14c8", + "id": "91a053e3-0d15-4c84-9458-664c79a28191", "name": "Notification successfully acknowledged.", "originalRequest": { "url": { @@ -46663,7 +46663,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -46680,12 +46680,12 @@ "value": "application/json" } ], - "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n}", + "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a91b0be4-dfb9-4571-9b81-eae0a56f6c4c", + "id": "fc511e5a-f1dc-4033-95be-24c49f51cbbb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46720,7 +46720,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -46737,12 +46737,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd49d5ff-32f5-4d3f-91c0-fc43d0041155", + "id": "c8f078ef-4e36-4e44-afe6-ff3ff9aad61f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46777,7 +46777,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -46799,7 +46799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "698f5615-9679-4f26-87fe-b7cd1c2c7faf", + "id": "d2cbad67-0ed0-49b3-865b-c5d74b131db7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46834,7 +46834,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -46851,12 +46851,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "50879a2f-441b-4c58-bba9-bcb14fa97579", + "id": "e67782d7-d61a-42f1-8659-7268feca61bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46891,7 +46891,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -46913,7 +46913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aa2c544-d058-4cd0-a853-0be8fd88b466", + "id": "413aa16c-5b00-46a2-9111-15e0b6a65e9d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46948,7 +46948,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -46965,7 +46965,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -46976,7 +46976,7 @@ } }, { - "id": "da5d726e-03b3-487e-98a2-9c491f88d4c2", + "id": "dd54311f-801e-4be9-a44d-bfb6b1227ed0", "name": "List of Requested Access Request Recommendations", "request": { "name": "List of Requested Access Request Recommendations", @@ -47052,7 +47052,7 @@ }, "response": [ { - "id": "f730fc9b-9153-4ee2-bd4a-1ed69b62f6aa", + "id": "92326185-915d-4bbf-97b6-27b5b3468228", "name": "Returns the list of requested access request recommendations.", "originalRequest": { "url": { @@ -47137,12 +47137,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n }\n]", + "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e920f54d-f8d2-4b37-8b16-e187192ae2d6", + "id": "3936d83d-d262-47e4-b020-6ef1a221f44b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47227,12 +47227,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f92f91b2-6adf-4a06-9a43-7010b3019a6d", + "id": "dfd8d012-a06a-43c3-9fe6-a2e1de11ca87", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47322,7 +47322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69aaef8e-d28b-4a02-bcd7-0a912c68d579", + "id": "e4aec341-5035-4497-a39c-443c1342e3b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47407,12 +47407,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80dfd95f-efd3-4c3b-a16a-e7591f2ff20c", + "id": "10f8e6d1-c0e6-4e23-bbf2-f6951ef7358b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47502,7 +47502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5476a408-ab8e-4936-9dd6-5c6b27cf5f14", + "id": "bd89ebb7-5539-4ac1-9c58-56253388f8a0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47587,7 +47587,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -47598,7 +47598,7 @@ } }, { - "id": "42374d5a-3951-443c-a0f5-22f880d6491a", + "id": "bfe1e06c-60cd-43f3-9e52-37a7ec547996", "name": "Notification of Viewed Access Request Recommendations", "request": { "name": "Notification of Viewed Access Request Recommendations", @@ -47630,7 +47630,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -47641,7 +47641,7 @@ }, "response": [ { - "id": "22a27d50-0f33-408e-b7c3-84198b36b929", + "id": "4eff9df3-dcb4-4be5-bd10-40c7d7ff12b0", "name": "Recommendation successfully stored as viewed.", "originalRequest": { "url": { @@ -47676,7 +47676,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -47693,12 +47693,12 @@ "value": "application/json" } ], - "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n}", + "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "779dcb51-f932-4694-bd6c-214506f728c6", + "id": "6e077066-f30a-488b-ac73-a1b58247bd7b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47733,7 +47733,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -47750,12 +47750,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77da2cbf-b9ab-4145-abf6-e6ee545b28ec", + "id": "bf360ad0-9afd-4192-badd-9277be77b1e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47790,7 +47790,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -47812,7 +47812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bff5d071-b2dc-4b29-a1c8-97b2834d68fb", + "id": "5dc8d221-a800-4c3f-ad4f-64428572cc35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47847,7 +47847,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -47864,12 +47864,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "156fee25-eb56-4f73-88b7-a2d917147646", + "id": "21f05deb-b974-4d0b-8c66-e4118f50817a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47904,7 +47904,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -47926,7 +47926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6f83841-41e3-49e5-86b8-1c4054410589", + "id": "deabbebc-2520-42fa-bdbb-6ed846847111", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47961,7 +47961,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -47978,7 +47978,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -47989,7 +47989,7 @@ } }, { - "id": "fe38fc0d-7d51-42d2-9a85-936e0f67ff1f", + "id": "18692ac7-4578-4e65-a229-688a8e2994a0", "name": "List of Viewed Access Request Recommendations", "request": { "name": "List of Viewed Access Request Recommendations", @@ -48065,7 +48065,7 @@ }, "response": [ { - "id": "9f114f6a-3105-45e2-86f4-7c7ac47f1c73", + "id": "e8260e48-2d4a-4286-a962-d0a3ee05d4a7", "name": "Returns list of viewed access request recommendations.", "originalRequest": { "url": { @@ -48150,12 +48150,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n }\n]", + "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4ec624b1-b366-40ee-aca6-b13b7298393f", + "id": "3666d09b-01e0-4ac6-8ac6-72945cbaf9ed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48240,12 +48240,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d1c6954-272e-4bda-ae7d-51e812620097", + "id": "33ce2c56-9de0-4f65-901d-3d92e6d7be64", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48335,7 +48335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66d93f29-f499-473b-b639-2ca77ab14ba1", + "id": "0b53867c-3d9f-4b2b-8427-fdf1e32d2e00", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48420,12 +48420,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93b5a2a9-bb48-4b23-ad88-cc6c34540861", + "id": "2aeaa363-dd2b-4789-962b-4da8567b7820", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48515,7 +48515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af323882-ab33-4dd0-a0eb-ef7f367ea20e", + "id": "e0820b6d-1243-4fa6-888e-ad343ef2a6a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48600,7 +48600,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -48611,7 +48611,7 @@ } }, { - "id": "65fb891f-8098-423b-aef5-ce0660017c43", + "id": "684f4845-960a-4738-98f4-60f3d7a3587b", "name": "Notification of Viewed Access Request Recommendations in Bulk", "request": { "name": "Notification of Viewed Access Request Recommendations in Bulk", @@ -48655,7 +48655,7 @@ }, "response": [ { - "id": "33531b74-f727-44f5-b597-a315b85672eb", + "id": "4638ec33-81c6-4f48-a707-a1c7e9e73d63", "name": "Recommendations successfully stored as viewed.", "originalRequest": { "url": { @@ -48708,12 +48708,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n }\n]", + "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b39854b-7774-4e00-8b7a-15433e5bc752", + "id": "144dd254-4d3e-4cc3-a83b-8f4868ea33b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48766,12 +48766,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed6cf5eb-eff2-4c52-994b-af846d62b067", + "id": "5836445c-88a8-4252-be02-9b7c2dbda85c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48829,7 +48829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "082abeb0-2d66-4f38-93a6-3c3240bcaad3", + "id": "ba360fe0-9c2a-40ba-ae39-91e8871a8b4b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48882,12 +48882,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fedd4d5b-e181-46f8-9667-fe62387cda71", + "id": "d55fc0e2-7232-4280-8472-0b42fb8781f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48945,7 +48945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f1038ba-c5da-4bc1-b0f9-3f2dd5dadd58", + "id": "82cca8a8-7a65-4af7-9067-f88bce59bd77", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48998,7 +48998,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -49009,7 +49009,7 @@ } }, { - "id": "745e303a-7bf4-43dc-ae71-ee64b64cdf3d", + "id": "b2b0ab15-1021-4c2e-8516-feb4c67a9831", "name": "Get Message catalogs", "request": { "name": "Get Message catalogs", @@ -49029,7 +49029,7 @@ "variable": [ { "type": "any", - "value": "recommender", + "value": "access-request-recommender", "key": "catalog-id", "disabled": true, "description": { @@ -49050,7 +49050,7 @@ }, "response": [ { - "id": "2129e244-9e80-43a5-8342-a7141e1c7131", + "id": "6e8afa03-04ca-467b-acc6-0b1070578bc1", "name": "The message catalogs based on the request headers", "originalRequest": { "url": { @@ -49094,7 +49094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f82d07fc-2d21-41d4-910b-873753bbdd11", + "id": "96bc1fcd-f45b-4e09-90ee-c70de34c710b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49133,12 +49133,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b7021f4c-dbd6-4e76-9da8-29aea81ed55c", + "id": "463fc3aa-d960-4ae9-9d1d-bc30e705adbd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49182,7 +49182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbe98c42-2764-48ae-ad36-e4f2dc6961bc", + "id": "2980b05b-25d2-4b6c-9c63-4f679ed9f614", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49221,12 +49221,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5ee4d13-d23e-4f05-ae4d-f13880cc40c3", + "id": "79d0803e-77ca-4b9d-85d9-f07b065295b4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49270,7 +49270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb33e793-6d59-4c24-8468-a42e4c6aa313", + "id": "7dfdb324-9462-434c-8119-b021fe428ed9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49309,7 +49309,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -49326,7 +49326,7 @@ "description": "", "item": [ { - "id": "62a78503-39ec-44a2-b191-34eff2aa406d", + "id": "ab7e338c-bf1f-4f81-b35c-a216b032bb4b", "name": "Get a paginated list of common access", "request": { "name": "Get a paginated list of common access", @@ -49401,7 +49401,7 @@ }, "response": [ { - "id": "050e55a8-7313-41d3-acf7-27d4906765b2", + "id": "240e95b4-7b69-472c-af59-56c5da312aa6", "name": "Succeeded. Returns a list of common access for a customer.", "originalRequest": { "url": { @@ -49485,12 +49485,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"\",\n \"lastUpdated\": \"\",\n \"reviewedByUser\": \"\",\n \"lastReviewed\": \"\"\n },\n {\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"\",\n \"lastUpdated\": \"\",\n \"reviewedByUser\": \"\",\n \"lastReviewed\": \"\"\n }\n]", + "body": "[\n {\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"\",\n \"lastUpdated\": \"\",\n \"reviewedByUser\": \"\",\n \"lastReviewed\": \"\"\n },\n {\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"\",\n \"lastUpdated\": \"\",\n \"reviewedByUser\": \"\",\n \"lastReviewed\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93175638-2498-4332-ba27-1c8b52aa54ef", + "id": "f8564c17-f98e-46ef-9b3f-9d7d482fb9af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49574,12 +49574,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5dd245d3-3a62-4ae2-81d4-b17d3134786d", + "id": "8616e4f4-02f6-412c-98f3-66387cb048ec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49668,7 +49668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5220d94-94f4-458e-bf44-df80b8df5b09", + "id": "448495a8-f399-48ec-9ade-174a9d965cf0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49752,12 +49752,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c224121a-3a11-4207-9979-51cf6f4ca952", + "id": "6fa446dd-21a0-418b-8ab0-ea263d9eda13", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49841,7 +49841,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -49852,7 +49852,7 @@ } }, { - "id": "a100ece1-0b45-4278-8bf0-4f6d09831bed", + "id": "b21f86f3-4573-45a4-8343-bb339399a888", "name": "Create common access items", "request": { "name": "Create common access items", @@ -49883,7 +49883,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -49894,7 +49894,7 @@ }, "response": [ { - "id": "1af80381-b7ca-4006-86ed-8b30f25d6424", + "id": "80a3b879-6d59-408f-af4c-4dfddc6ad7df", "name": "Returns details of the common access classification request.", "originalRequest": { "url": { @@ -49928,7 +49928,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -49945,12 +49945,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\",\n \"lastUpdated\": \"\",\n \"reviewedByUser\": \"\",\n \"lastReviewed\": \"\",\n \"createdByUser\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\",\n \"lastUpdated\": \"\",\n \"reviewedByUser\": \"\",\n \"lastReviewed\": \"\",\n \"createdByUser\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9fd829aa-9445-401f-b87e-092c981c3dcf", + "id": "e0cc60d3-9ca2-49fe-b9e1-05deddd16007", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49984,7 +49984,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -50001,12 +50001,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ce06f096-4ddb-40c7-8f52-e46760fdff76", + "id": "28d26493-cb92-4993-9ba7-add977249506", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50040,7 +50040,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -50062,7 +50062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2caf0a9c-2565-40d4-9459-5b178f7225a9", + "id": "b33531a5-c303-4cae-b08d-9d924a18b1b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50096,7 +50096,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -50113,12 +50113,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3c2ca4e-5024-4ec5-9a85-fe9ffcf1934a", + "id": "da142485-8a7f-41f0-bbc4-0c7cf7d011f8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50152,7 +50152,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -50174,7 +50174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dcf5c09-f5bc-4db2-987b-d150dc1fe469", + "id": "1191d8e8-c632-4402-a2b3-0e955cc02473", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50208,7 +50208,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"\",\n \"description\": \"\",\n \"ownerName\": \"\",\n \"ownerId\": \"\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -50225,7 +50225,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -50236,7 +50236,7 @@ } }, { - "id": "c8230589-6904-4ced-be09-3789fdc344d2", + "id": "01c72043-2d98-4334-adf7-07daed4ab770", "name": "Bulk update common access status", "request": { "name": "Bulk update common access status", @@ -50279,7 +50279,7 @@ }, "response": [ { - "id": "0ecfa48d-c531-4303-9751-d766fab9f9bf", + "id": "23bb1023-f7c5-41a7-be21-b90e7bda22ca", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -50336,7 +50336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0949b59c-75cb-4a94-bd96-49f0765c9bc7", + "id": "fb640867-97db-4b60-a464-25a8075c7bba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50388,12 +50388,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "14e77776-08b8-46fe-982a-8fe589641983", + "id": "f1f807b2-57f8-46a3-8569-7054a2738781", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50450,7 +50450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c38c9a84-149b-4057-a70c-f4643a23a0eb", + "id": "36234496-3a28-4b36-a33f-bdef49306b69", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50502,12 +50502,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e60895f-8e79-4b8c-ad55-2dd897bf8dde", + "id": "c72df034-a195-480d-9930-d570f30918e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50564,7 +50564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb94ac06-8187-4847-9875-0615532a4f13", + "id": "1773f0af-978f-4fe5-a04f-879c9c4ec024", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50616,7 +50616,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -50633,7 +50633,7 @@ "description": "", "item": [ { - "id": "1769c8a9-4767-4dc5-8402-9f8988ef5b15", + "id": "51ea7e5a-43f7-4fc4-ab6f-177ad80f3463", "name": "IAI Identity Outliers Summary", "request": { "name": "IAI Identity Outliers Summary", @@ -50674,7 +50674,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -50708,7 +50708,7 @@ }, "response": [ { - "id": "a42baeef-10e7-443d-bf5b-6ba33b847e7b", + "id": "949db0cb-fb41-402f-b17d-9c8991e8097b", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -50744,7 +50744,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -50806,7 +50806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26e1674e-b44a-4611-843f-a328e2e0a507", + "id": "4b7d7f83-ca02-435b-a466-e54548d74dd2", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -50842,7 +50842,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -50895,7 +50895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e881898-39fc-475c-b1fa-c7b59ff17992", + "id": "8438bb43-82a2-4c83-b105-62208efb2adc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50931,7 +50931,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -50979,12 +50979,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "72fbe3fd-d217-43bc-870e-03bf45292a7d", + "id": "17f331d8-fac8-4e3a-863e-e15a0bec1615", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51020,7 +51020,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -51073,7 +51073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "819f2fc6-2855-4fc9-8bec-78d2b390d853", + "id": "6906c8be-f64e-4e25-99dd-9920fba745bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51109,7 +51109,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -51157,12 +51157,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6a7c2ceb-12c1-4c2b-a9eb-2ed3fdb39dd2", + "id": "71e33b2e-0e1c-4743-b2c6-93a6b7debdae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51198,7 +51198,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -51251,7 +51251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79cd9561-3ef8-45d6-b7aa-73ddd393cb5f", + "id": "a37685be-382d-4341-9482-844115fdc719", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51287,7 +51287,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -51335,7 +51335,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -51346,7 +51346,7 @@ } }, { - "id": "d675d989-2cb0-4f7d-9c0f-b3e7cf40011c", + "id": "5a69bf93-858f-413e-a354-57aa5eb257de", "name": "IAI Identity Outliers Latest Summary", "request": { "name": "IAI Identity Outliers Latest Summary", @@ -51370,7 +51370,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51386,7 +51386,7 @@ }, "response": [ { - "id": "badfe247-f957-44cd-92a4-1c1485cd7605", + "id": "9b7a2b93-4b8b-4cb2-a6d9-e719e4d3144b", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -51405,7 +51405,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51435,12 +51435,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"type\": \"STRUCTURAL\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\",\n \"totalIgnored\": \"\"\n },\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\",\n \"totalIgnored\": \"\"\n }\n]", + "body": "[\n {\n \"type\": \"STRUCTURAL\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\",\n \"totalIgnored\": \"\"\n },\n {\n \"type\": \"STRUCTURAL\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\",\n \"totalIgnored\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "918d970d-e1f2-44fc-a57a-30f04c9f39e5", + "id": "018895d3-d2e3-4a06-ac41-30bdfa0c5411", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -51459,7 +51459,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51494,7 +51494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfe05de3-295e-485a-9795-6f3f7d88d224", + "id": "51a3e8be-6c8a-4050-861b-f0575c923efe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51513,7 +51513,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51543,12 +51543,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5789774-15d1-454f-b0ae-43df6f6e7d24", + "id": "b4500a80-76d8-4de1-a048-abd47df182e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51567,7 +51567,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51602,7 +51602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "404f009f-4f09-48df-8e93-e25ffda46ad0", + "id": "3c545cd9-cdfb-4cfe-a3d9-c14d9efda66d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51621,7 +51621,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51651,12 +51651,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab5053b1-eb84-443f-b09e-16b168d0ee14", + "id": "a0fce639-993a-48e2-8277-d5b13ad85232", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51675,7 +51675,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51710,7 +51710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "558dfdce-7c29-41d7-9b51-c18c4ff5dc6b", + "id": "ce256607-603c-4fa6-b5f1-b29f94b0191e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51729,7 +51729,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51759,7 +51759,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -51770,7 +51770,7 @@ } }, { - "id": "46809414-01d2-4226-8d27-d514f87fe1f2", + "id": "f5e78c95-6514-4440-a762-ed18d7d98df6", "name": "IAI Get Identity Outliers", "request": { "name": "IAI Get Identity Outliers", @@ -51820,7 +51820,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -51854,7 +51854,7 @@ }, "response": [ { - "id": "56264d33-b408-4332-9887-8d060e223202", + "id": "89d3562a-d84c-4a9e-9dc1-3c1f466e42a5", "name": "Succeeded. Returns list of objects. Each object contains information about outliers", "originalRequest": { "url": { @@ -51899,7 +51899,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -51956,12 +51956,12 @@ "value": "" } ], - "body": "[\n {\n \"id\": \"\",\n \"identityId\": \"\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"\",\n \"latestDetectionDate\": \"\",\n \"ignored\": \"\",\n \"attributes\": {},\n \"score\": \"\",\n \"unignoreType\": \"MANUAL\",\n \"unignoreDate\": \"\",\n \"ignoreDate\": \"\"\n },\n {\n \"id\": \"\",\n \"identityId\": \"\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"\",\n \"latestDetectionDate\": \"\",\n \"ignored\": \"\",\n \"attributes\": {},\n \"score\": \"\",\n \"unignoreType\": \"AUTOMATIC\",\n \"unignoreDate\": \"\",\n \"ignoreDate\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"identityId\": \"\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"\",\n \"latestDetectionDate\": \"\",\n \"ignored\": \"\",\n \"attributes\": {},\n \"score\": \"\",\n \"unignoreType\": \"AUTOMATIC\",\n \"unignoreDate\": \"\",\n \"ignoreDate\": \"\"\n },\n {\n \"id\": \"\",\n \"identityId\": \"\",\n \"type\": \"STRUCTURAL\",\n \"firstDetectionDate\": \"\",\n \"latestDetectionDate\": \"\",\n \"ignored\": \"\",\n \"attributes\": {},\n \"score\": \"\",\n \"unignoreType\": \"MANUAL\",\n \"unignoreDate\": \"\",\n \"ignoreDate\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f4ae465-07ee-4b20-84a3-b26bb6632a8b", + "id": "aa06e1f5-4e5d-4dd8-bc81-bcf9513106f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52006,7 +52006,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -52054,12 +52054,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4c61f02-6f94-4b16-8447-a713748e1191", + "id": "14eb3836-4450-4979-a24c-3ec7e6c7358c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52104,7 +52104,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -52157,7 +52157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "508e9b8c-f488-49b1-bba6-ebae0f4cd796", + "id": "a31ae83a-e5ec-4949-beae-07ed3f9c8943", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52202,7 +52202,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -52250,12 +52250,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b139e61-b0e7-481c-a97e-860dc533f067", + "id": "7d0e8a75-dc8c-4f77-8b0c-59805eac79af", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52300,7 +52300,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -52353,7 +52353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb1e1e46-8951-4849-8098-bc4a701dcd84", + "id": "7f8ea471-5cf8-4bdf-8b3b-0f53540bd424", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52398,7 +52398,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -52446,7 +52446,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -52457,7 +52457,7 @@ } }, { - "id": "a3e07f8a-dce9-4273-8acc-506908d59265", + "id": "8e01c2ac-d530-4a82-9c05-7f91791e1d82", "name": "Get identity outlier's contibuting features", "request": { "name": "Get identity outlier's contibuting features", @@ -52545,7 +52545,7 @@ }, "response": [ { - "id": "283e5055-32d8-4753-abd1-43eff75e5b60", + "id": "1fad2bb7-e162-40bf-bae0-79e59b79aed4", "name": "Succeeded. Returns list of objects. Each object contains a feature and metadata about that feature", "originalRequest": { "url": { @@ -52654,7 +52654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e116b54-0e47-48fb-8929-c0d2f61cad6a", + "id": "a6319060-c444-494b-8b8d-7718279b77d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52740,12 +52740,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c881cad9-ba96-4d5d-b8d8-de643b70d2f0", + "id": "08d0c750-9454-4ca8-89d3-c2c8e68de897", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52836,7 +52836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79c3d789-254c-4e30-be2b-609caad32b45", + "id": "91a829ca-e097-4121-a746-b0411cbcd626", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52922,12 +52922,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70eb73eb-b7f4-49cf-9f57-3b534e242188", + "id": "070749d3-f290-4b7b-b712-d4ab9c5e750b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53013,12 +53013,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fdba42c7-3439-458f-8904-cd9c28205e74", + "id": "7ce6dce4-22d5-4031-805d-2c5474075231", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53109,7 +53109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ff0e874-89af-4ca5-b4d9-44d460c7ee96", + "id": "4f3d2268-50c9-4432-9ad1-f4360b953223", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53195,7 +53195,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -53206,7 +53206,7 @@ } }, { - "id": "fb0e4806-8a6e-41a9-8744-2a7e1d4d3e81", + "id": "56577367-438f-4a5b-9f56-f57369abcdb2", "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", @@ -53306,7 +53306,7 @@ }, "response": [ { - "id": "7c7128f4-7a5c-47a1-a0ab-8e82ca5e5d15", + "id": "af7e431f-4d9c-4acd-bc5b-6c4de3f438cc", "name": "The list of access items.", "originalRequest": { "url": { @@ -53394,12 +53394,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"accessType\": \"ACCESS_PROFILE\",\n \"sourceName\": \"\",\n \"extremelyRare\": false\n },\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"accessType\": \"ENTITLEMENT\",\n \"sourceName\": \"\",\n \"extremelyRare\": false\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"accessType\": \"ACCESS_PROFILE\",\n \"sourceName\": \"\",\n \"extremelyRare\": false\n },\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"accessType\": \"ROLE\",\n \"sourceName\": \"\",\n \"extremelyRare\": false\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e6123734-bc9a-43f0-9c7c-974673828dcf", + "id": "2cbad5ec-25a5-4429-ae38-8b4545506d40", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53487,12 +53487,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c9e2687a-8a8e-4f99-90db-4abeb4ef3124", + "id": "c6d27e22-6f8d-4aaa-9eb7-751bca4b8ffb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53585,7 +53585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "171accad-72bf-4fd4-871d-58eb72105ce9", + "id": "b25074d9-4f05-4616-a312-fcad99205f99", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53673,12 +53673,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "118fe70b-fa03-4208-a9c5-555b32485e48", + "id": "9fc3477d-836c-4335-9c79-3d49213999fd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53766,12 +53766,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9add189-d415-418c-aa6c-ae2186aee7a9", + "id": "cebcba22-a312-4430-addf-04b429f50a33", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53864,7 +53864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95e382dd-2310-4876-b6ef-e93bc56c4b07", + "id": "4b38e003-9dba-43fd-8204-102e8f8bf7de", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53952,7 +53952,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -53963,7 +53963,7 @@ } }, { - "id": "3d2ab13d-fc15-49a8-a322-b05f1f565993", + "id": "3568dd38-da3a-4099-a878-5771e65e082f", "name": "IAI Identity Outliers Ignore", "request": { "name": "IAI Identity Outliers Ignore", @@ -54006,7 +54006,7 @@ }, "response": [ { - "id": "2b288252-9caa-4ceb-8187-5f7aed439fd1", + "id": "206ab60e-597f-4d63-b948-e9be79e773dd", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -54053,7 +54053,7 @@ "_postman_previewlanguage": "text" }, { - "id": "88af75c9-a1a5-4c3f-ac19-68ef429df0f1", + "id": "901f455c-fb13-4964-b0fb-1f10c21715b0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54105,12 +54105,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aac72a22-19c0-47b4-bcc2-d1c160f6e4d5", + "id": "d7c7e6b4-f75b-4e7a-9bc7-55669c851e93", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54167,7 +54167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc58677d-4473-4bf8-9603-acf9e2eae2a7", + "id": "51c5ee79-e9ad-4ad5-af6d-cadaddb8cadf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54219,12 +54219,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9e116786-746e-4f53-b059-85c496a2e021", + "id": "b442cd96-a909-4edd-8d55-43434a4dab42", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54281,7 +54281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28d5555e-7f03-4606-8096-cd386622af6a", + "id": "22dc55c5-ddd5-4373-aa17-4a1379d47c5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54333,7 +54333,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -54344,7 +54344,7 @@ } }, { - "id": "575abe06-c365-4cc2-b0b6-492b1b78b62d", + "id": "07e224d5-a63f-4a13-813d-d48199e746b7", "name": "IAI Identity Outliers Unignore", "request": { "name": "IAI Identity Outliers Unignore", @@ -54387,7 +54387,7 @@ }, "response": [ { - "id": "50c1d1db-9a72-4284-871e-26844b4fdde2", + "id": "7d9ae433-634e-46ff-9e66-c988bbd957f8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -54434,7 +54434,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d6a8359e-97e9-46f3-bf2f-e7f79446b299", + "id": "5f710a90-53c2-4a25-9172-566f22a33604", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54486,12 +54486,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a7eeef5-acca-4abd-98c4-9619c724562b", + "id": "a831b5d1-f118-4d68-b2eb-b9bb310a1418", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54548,7 +54548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d153c144-fcc6-42d8-b7e7-38836c100ba3", + "id": "aba5e3d0-5c74-48ae-b04f-e1b216bbcad4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54600,12 +54600,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ade7344-ac8e-40ae-bdbb-a11523a4eca3", + "id": "1000ed46-0905-413b-bd60-8dd1f3134dc6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54662,7 +54662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1e8a835-cf03-4510-83c7-0d7015d00d1f", + "id": "3b439c39-ebfa-4a4f-b366-5f20b252f28c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54714,7 +54714,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -54725,7 +54725,7 @@ } }, { - "id": "908ef75b-c34e-49de-82f4-46785ececf21", + "id": "04f627a9-0f2e-416a-a2ff-201189bec252", "name": "IAI Identity Outliers Export", "request": { "name": "IAI Identity Outliers Export", @@ -54749,7 +54749,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -54765,7 +54765,7 @@ }, "response": [ { - "id": "e6097d3c-e368-4cb0-9cf7-a6dd9851ce83", + "id": "80ee60ba-ac5a-4e80-913e-de9c2f25bd6c", "name": "Succeeded. Returns zip of 2 CSVs to download. 1 CSV for ignored outliers and 1 for non-ignored outliers", "originalRequest": { "url": { @@ -54784,7 +54784,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -54819,7 +54819,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ebde111d-6046-4ae8-a59e-76de8f7b5f3f", + "id": "8e8c14ff-f200-4204-9547-1f15b17708e7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54838,7 +54838,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -54868,12 +54868,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "32c529ea-ebb8-4184-bec7-423c73cb2748", + "id": "cedc5b2e-3bae-46ce-955e-23ecc41eac46", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54892,7 +54892,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -54927,7 +54927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "808ceaaa-d109-4984-ba12-583babf087d6", + "id": "ff859347-40f6-4c81-8010-e2d767ee16ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54946,7 +54946,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -54976,12 +54976,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a0fdef5c-de03-42b0-8226-a4b0d6b16f02", + "id": "a70c7de9-0ab2-4c73-bdc2-44aa3a0b0105", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55000,7 +55000,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -55035,7 +55035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c707ca19-5844-4f3f-a293-004686a3fd2f", + "id": "a973f633-c72e-4587-96a2-842a07165c32", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55054,7 +55054,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -55084,7 +55084,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -55095,7 +55095,7 @@ } }, { - "id": "3a9bcc5a-f174-4dce-b0ef-c3827d1e94c3", + "id": "25f7fd02-73d4-4dd4-821a-cbf35b4329c7", "name": "Get identity outlier contibuting feature summary", "request": { "name": "Get identity outlier contibuting feature summary", @@ -55136,7 +55136,7 @@ }, "response": [ { - "id": "e81de316-b326-4d71-985e-0c2d779bb463", + "id": "7979ce0f-d32a-4bc5-9fa5-87ec8917bd48", "name": "Succeeded. Returns selected contributing feature summary for an outlier", "originalRequest": { "url": { @@ -55184,12 +55184,12 @@ "value": "" } ], - "body": "{\n \"contributingFeatureName\": \"\",\n \"identityOutlierDisplayName\": \"\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"\",\n \"value\": \"\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"\",\n \"value\": \"\",\n \"valueType\": \"INTEGER\"\n }\n ],\n \"featureDefinition\": \"\",\n \"featureExplanation\": \"\",\n \"peerDisplayName\": \"\",\n \"peerIdentityId\": \"\",\n \"accessItemReference\": {}\n}", + "body": "{\n \"contributingFeatureName\": \"\",\n \"identityOutlierDisplayName\": \"\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"\",\n \"value\": \"\",\n \"valueType\": \"FLOAT\"\n },\n {\n \"displayName\": \"\",\n \"value\": \"\",\n \"valueType\": \"INTEGER\"\n }\n ],\n \"featureDefinition\": \"\",\n \"featureExplanation\": \"\",\n \"peerDisplayName\": \"\",\n \"peerIdentityId\": \"\",\n \"accessItemReference\": {}\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1cb2506e-2ec0-4f29-9943-3cff3d3d5be4", + "id": "f3bbcaf0-23f8-47b8-bee3-8fc5c2347c42", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55228,12 +55228,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "918a7e69-4956-451f-8710-4a6c37552205", + "id": "83ca03ae-8e00-4cf6-be8b-5a07e6a29039", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55277,7 +55277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89ee3851-b050-4cd0-83ae-6af032c98ff5", + "id": "f5765810-7bbe-4cd6-b725-2bf6df875855", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55316,12 +55316,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "60d10fb5-6c03-453a-88c3-5cc34624424b", + "id": "18b419bd-5c79-4499-9516-cae7b56b6343", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -55360,12 +55360,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "018c99da-4d41-4789-a4c5-8ea4141d3271", + "id": "ac2d620b-af1f-4017-abdd-298894530d1b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55409,7 +55409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe7dd170-3f84-4074-a822-5256e0af9002", + "id": "ba6f9d8a-1d81-4c34-b4ae-931435ad4384", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55448,7 +55448,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -55465,7 +55465,7 @@ "description": "", "item": [ { - "id": "02f1f40c-df15-4e46-b91a-af3169cee7ff", + "id": "880f771a-b70a-4db3-8419-d06ef2840d6e", "name": "Identity Outliers List", "request": { "name": "Identity Outliers List", @@ -55535,7 +55535,7 @@ }, "response": [ { - "id": "d5b1ebd8-49be-44ef-a51d-6a94619e59a4", + "id": "c6131fac-a1d0-4194-8b8f-dd3565f1f42c", "name": "List of identities that are not included in peer groups.", "originalRequest": { "url": { @@ -55603,12 +55603,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"type\": \"\",\n \"peer_group_id\": \"\",\n \"attributes\": {\n \"sint_153\": {}\n }\n },\n {\n \"id\": \"\",\n \"type\": \"\",\n \"peer_group_id\": \"\",\n \"attributes\": {\n \"indd\": {}\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"type\": \"\",\n \"peer_group_id\": \"\",\n \"attributes\": {\n \"proident_3\": {}\n }\n },\n {\n \"id\": \"\",\n \"type\": \"\",\n \"peer_group_id\": \"\",\n \"attributes\": {\n \"commodo2\": {},\n \"voluptate_7d8\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6754295a-1e62-4320-b987-9c580db5cd98", + "id": "f4f37249-b353-45ca-9d49-f352c0413993", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55676,12 +55676,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5fb93609-19f7-4028-b34d-f3de7624343e", + "id": "fe07e99b-dd45-4a44-af35-ab79dfeadcc2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55754,7 +55754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e3a8dcc-6121-4263-a5f1-4584ef02f77a", + "id": "ccc7421b-b1e5-4d65-92d5-f0273646bb0b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55822,12 +55822,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f75716f8-ba8f-497e-abde-020a21a32c02", + "id": "f020c8ca-d921-4a26-8a44-96620fdfe898", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55900,7 +55900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf0d0b6a-c874-4cd7-b8ed-e29baefd8c70", + "id": "7214fb4c-332f-43a7-b91e-b24e3ed9003e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55968,7 +55968,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -55985,7 +55985,7 @@ "description": "", "item": [ { - "id": "806c5216-001d-44f8-a76c-582a88ee6c79", + "id": "b0284255-086e-44a4-a8df-018237671437", "name": "Returns a Recommendation Based on Object", "request": { "name": "Returns a Recommendation Based on Object", @@ -56017,7 +56017,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -56028,7 +56028,7 @@ }, "response": [ { - "id": "972b59ee-d680-4614-90f2-3113e9d96f67", + "id": "8c84f1ff-0483-4040-a1c8-e8839e9b9d47", "name": "The recommendations for a customer", "originalRequest": { "url": { @@ -56063,7 +56063,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -56080,12 +56080,12 @@ "value": "application/json" } ], - "body": "{\n \"response\": [\n {\n \"request\": {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"NO\",\n \"interpretations\": [\n \"\",\n \"\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"\",\n \"entitlementId\": \"\",\n \"recommendation\": \"\",\n \"overallWeightedScore\": \"\",\n \"featureWeightedScores\": {\n \"laboris_456\": \"\",\n \"fugiat_7\": \"\"\n },\n \"threshold\": \"\",\n \"identityAttributes\": {\n \"voluptate_31\": {\n \"value\": \"\"\n },\n \"aliqua_c\": {\n \"value\": \"\"\n },\n \"amet3e5\": {\n \"value\": \"\"\n }\n },\n \"featureValues\": {\n \"feature\": \"\",\n \"numerator\": \"\",\n \"denominator\": \"\"\n }\n }\n },\n {\n \"request\": {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"NOT_FOUND\",\n \"interpretations\": [\n \"\",\n \"\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"\",\n \"entitlementId\": \"\",\n \"recommendation\": \"\",\n \"overallWeightedScore\": \"\",\n \"featureWeightedScores\": {\n \"et_a_8\": \"\",\n \"cupidatat_eec\": \"\"\n },\n \"threshold\": \"\",\n \"identityAttributes\": {\n \"mollit_319\": {\n \"value\": \"\"\n },\n \"do0\": {\n \"value\": \"\"\n },\n \"laboris1c\": {\n \"value\": \"\"\n }\n },\n \"featureValues\": {\n \"feature\": \"\",\n \"numerator\": \"\",\n \"denominator\": \"\"\n }\n }\n }\n ]\n}", + "body": "{\n \"response\": [\n {\n \"request\": {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n \"recommendation\": \"NO\",\n \"interpretations\": [\n \"\",\n \"\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"\",\n \"entitlementId\": \"\",\n \"recommendation\": \"\",\n \"overallWeightedScore\": \"\",\n \"featureWeightedScores\": {\n \"anim1da\": \"\",\n \"fugiatb\": \"\",\n \"Ut__e\": \"\",\n \"pariatur_3f8\": \"\"\n },\n \"threshold\": \"\",\n \"identityAttributes\": {\n \"proident3\": {\n \"value\": \"\"\n },\n \"tempor164\": {\n \"value\": \"\"\n }\n },\n \"featureValues\": {\n \"feature\": \"\",\n \"numerator\": \"\",\n \"denominator\": \"\"\n }\n }\n },\n {\n \"request\": {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"\",\n \"\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"\",\n \"entitlementId\": \"\",\n \"recommendation\": \"\",\n \"overallWeightedScore\": \"\",\n \"featureWeightedScores\": {\n \"cupidatat7\": \"\",\n \"consequat3\": \"\"\n },\n \"threshold\": \"\",\n \"identityAttributes\": {\n \"id_66\": {\n \"value\": \"\"\n }\n },\n \"featureValues\": {\n \"feature\": \"\",\n \"numerator\": \"\",\n \"denominator\": \"\"\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f639fe19-3bdc-4747-88da-02bacb365b83", + "id": "07713824-0ecb-4422-ab93-bf0527a572a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56120,7 +56120,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -56137,12 +56137,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bbf32cce-d694-4c1f-9254-3c625def5914", + "id": "0c071bcd-e19c-4905-bb96-85be6f599ee8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56177,7 +56177,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -56199,7 +56199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1aef4c9-2824-440d-a2c9-4edb8c5fbb85", + "id": "babfa061-eb8a-4e63-bf6f-58c0bd9cb95d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56234,7 +56234,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -56251,12 +56251,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a54b87ab-e465-4b4d-bbc9-43432f4f08c5", + "id": "3b44612c-9c13-46a1-b64b-35eaf72a46c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56291,7 +56291,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -56313,7 +56313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96e2691e-fc03-4bb6-ae79-a6bed592ec1a", + "id": "f93ee603-41f7-4d98-a7bb-fcbbff275e23", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56348,7 +56348,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", + "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -56365,7 +56365,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -56376,7 +56376,7 @@ } }, { - "id": "abf3c18f-0388-499f-882f-b5757b8ec83b", + "id": "31599d0e-e254-4797-8b49-856884ded110", "name": "Get certification recommendation config values", "request": { "name": "Get certification recommendation config values", @@ -56406,7 +56406,7 @@ }, "response": [ { - "id": "5d3621c4-21c4-4ebe-8f63-d98e03bc1e9b", + "id": "4b95d94a-cc6c-4e0d-a3c6-00855c914c7a", "name": "Cert recommendation configuration attributes", "originalRequest": { "url": { @@ -56450,7 +56450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d16e4011-182c-4c6f-814e-196691184767", + "id": "defbc1ac-2f70-4407-b19a-a55f5673ff9e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56489,12 +56489,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dffbe7b9-ccdb-460e-ba47-22ca3aa650b0", + "id": "c8ebf441-47e9-4573-959c-096fd9afc4df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56538,7 +56538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86218966-6c3e-49a2-a361-8f776a967ce5", + "id": "1995e6d0-b74a-4f5e-9beb-536f70462a2b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56577,12 +56577,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34819128-c0ac-476b-af96-76c8082d08d5", + "id": "78c6493a-4173-462f-9524-3ddd5ceb6b40", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56621,7 +56621,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -56632,7 +56632,7 @@ } }, { - "id": "c8437c86-7d8d-4db7-b00b-716533cf0ba5", + "id": "ce41ef3f-c2ec-4bfa-94ef-d798b6477b2a", "name": "Update certification recommendation config values", "request": { "name": "Update certification recommendation config values", @@ -56675,7 +56675,7 @@ }, "response": [ { - "id": "936833be-2162-4337-863a-12723110ad16", + "id": "d7a3c31d-b1cc-42fe-8b2e-9583a05eabb1", "name": "Cert recommendation configuration attributes after update", "originalRequest": { "url": { @@ -56732,7 +56732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec9023f9-160a-4c63-b720-9ed8764d6964", + "id": "c9dd6e23-9646-4445-81bf-5b1eef3c120e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56784,12 +56784,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3b29ef4-2e4b-4d77-8a3c-613d12e04679", + "id": "d734de77-95cb-44ba-975d-ad82e289ab66", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56846,7 +56846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2407b41e-42ef-4197-a200-55cdec050ae6", + "id": "e926b16b-1823-4b02-ac89-e1eb1f594e5e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56898,12 +56898,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b876de65-f50c-4e6c-8751-8a4c9f14e83b", + "id": "c34c24c5-0d5e-4ec8-8935-97a2587b4daa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56955,7 +56955,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -56966,7 +56966,7 @@ } }, { - "id": "06a217e1-ee81-47ec-a741-aa28d361d2a6", + "id": "e542d6a1-91bc-4c40-84fb-cce9cde26f3b", "name": "Get Message catalogs", "request": { "name": "Get Message catalogs", @@ -56986,7 +56986,7 @@ "variable": [ { "type": "any", - "value": "recommender", + "value": "access-request-recommender", "key": "catalog-id", "disabled": true, "description": { @@ -57007,7 +57007,7 @@ }, "response": [ { - "id": "bb90b560-e2bb-4124-b3b8-f79f9997b294", + "id": "2a6d2a67-865e-4ace-aecc-ce44da1bcfa5", "name": "The message catalogs based on the request headers", "originalRequest": { "url": { @@ -57051,7 +57051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8044262-b952-4f1e-a310-e4843eb27f17", + "id": "1a2e2973-3e55-4b78-9365-7a2a85b17d06", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57090,12 +57090,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b0ddc8e5-273f-47c0-8734-ea7ce716b615", + "id": "98647079-a6a7-4b1b-a479-a5f92e4feb77", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57139,7 +57139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af405c96-d448-4910-86b0-6923ac8e9701", + "id": "d618a4f8-d860-4370-8882-b639f8ffe8df", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57178,12 +57178,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4b5c9b31-b169-4e27-9eee-b84869155f37", + "id": "4c9c57df-293f-4359-b283-e6c586f14cd5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57227,7 +57227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9264389f-5c72-4992-9c3d-b1a0677a9ab0", + "id": "d0108615-311f-4a0a-8364-8b2c251ad392", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57266,7 +57266,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -57283,7 +57283,7 @@ "description": "", "item": [ { - "id": "12e0a218-610a-4898-b7e9-6f84fc46fb03", + "id": "c33528f0-feb2-4f36-b2c2-5fa53d93f6ac", "name": "Create a role mining session", "request": { "name": "Create a role mining session", @@ -57314,7 +57314,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -57325,7 +57325,7 @@ }, "response": [ { - "id": "f1050571-8df2-489d-924c-59d876e0b2f0", + "id": "1fafdde5-c39a-46cf-96e3-5a027ee94db4", "name": "Submitted a role mining session request", "originalRequest": { "url": { @@ -57359,7 +57359,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -57376,12 +57376,12 @@ "value": "application/json" } ], - "body": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"pruneThreshold\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"id\": \"\",\n \"createdDate\": \"\",\n \"modifiedDate\": \"\",\n \"type\": \"COMMON\"\n}", + "body": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"pruneThreshold\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"id\": \"\",\n \"createdDate\": \"\",\n \"modifiedDate\": \"\",\n \"type\": \"SPECIALIZED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "88919c53-c640-4c6d-ab6a-5b273d5338ee", + "id": "c06d67a8-d99e-40df-b1c3-5401e2a1ccfa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57415,7 +57415,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -57432,12 +57432,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ebdcab04-f6b0-46a4-afb8-5e500495d04f", + "id": "9f0b6a0e-2c25-4400-9f8e-61c9902ea656", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57471,7 +57471,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -57493,7 +57493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c99d9f4-353a-460d-98d6-a6e4828311cd", + "id": "92d2b63d-a0b1-4ad5-9f35-d01455a414d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57527,7 +57527,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -57544,12 +57544,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eee9fff9-64e5-438f-87f4-d60afb00a9ad", + "id": "8780c81f-44ab-459d-9c8f-185b010068e0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57583,7 +57583,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -57605,7 +57605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59003e43-1d89-4993-9c43-d7ac2b54bfab", + "id": "572119bb-75c0-449d-9f7b-777cc64b211e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57639,7 +57639,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"COMMON\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", + "raw": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"pruneThreshold\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"emailRecipientId\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"identityCount\": \"\",\n \"saved\": \"\",\n \"name\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -57656,7 +57656,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -57667,7 +57667,7 @@ } }, { - "id": "12f797b7-e146-4f87-877d-c372459be4d4", + "id": "4b4e63b0-9c35-4776-95fe-3f5a1aa1d81d", "name": "Retrieves all role mining sessions", "request": { "name": "Retrieves all role mining sessions", @@ -57742,7 +57742,7 @@ }, "response": [ { - "id": "79f93298-102a-462f-9c69-9ed3ea4499d7", + "id": "a1f51bdf-f2c7-42ad-b3b1-f1ee6ec3786b", "name": "Succeeded. Returns all role mining sessions that match the query parameters.", "originalRequest": { "url": { @@ -57831,7 +57831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "637d9ea6-a98d-410f-bb35-df43361be324", + "id": "8d979552-e800-4c19-9ef1-db932edf7fe3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57915,12 +57915,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d55089c4-275a-4afb-8b92-b90a01ab23da", + "id": "2379283f-7a25-46e6-b6ca-3fbc4b65c692", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58009,7 +58009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc90bfc8-6c9f-4cbf-8308-846c2d167b2c", + "id": "6a12e7bb-05e6-48b7-a6c5-aa2547252d22", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58093,12 +58093,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "764f29a0-dd5e-4d94-ae93-b3427f5a612a", + "id": "76af1122-9fe9-4f21-9de2-c126fb28314b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58187,7 +58187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0f4c237-fbd5-45f6-a0d0-b7c67e1048e5", + "id": "85f7a44a-186e-4367-838b-39199d0eada6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58271,7 +58271,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -58282,7 +58282,7 @@ } }, { - "id": "28760974-fa44-4d92-b66c-c63e63b4c3ff", + "id": "0a6dd830-28ec-4356-8d56-5d7c769aa493", "name": "Patch a role mining session", "request": { "name": "Patch a role mining session", @@ -58325,7 +58325,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58336,7 +58336,7 @@ }, "response": [ { - "id": "aa2228e7-9b76-4bb3-af10-4c1c071fc4c4", + "id": "911dd861-65b9-409b-9d76-4e3b38266cda", "name": "Success", "originalRequest": { "url": { @@ -58371,7 +58371,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58393,7 +58393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "605b1c41-da4c-4a2a-98a0-916fe80723e9", + "id": "173ee719-689a-4948-a925-4dfba52747ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58428,7 +58428,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58445,12 +58445,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8baee48e-7216-42de-a0b5-3b0ccd6b3945", + "id": "5513adc2-b8f9-4bf9-85b1-63901da2d7e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58485,7 +58485,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58507,7 +58507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa000d38-fca5-4b6f-b18d-1cfbaf958771", + "id": "bf744515-c433-485e-a3a1-e0ab3e8671cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58542,7 +58542,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58559,12 +58559,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7e5e14c-4ead-4717-a41d-b15284c2f982", + "id": "db453a7d-bca3-45e5-b063-5fe0ec5e0b71", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58599,7 +58599,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58616,12 +58616,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6d3ddfd-5a6a-4ade-aa4b-255cd8842c83", + "id": "4c00cc32-0bab-4045-b53a-3ff023826158", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58656,7 +58656,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58678,7 +58678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27776f7d-aaec-404a-9982-a89d3bfd7b07", + "id": "001188d9-8d50-403c-99c5-3cda856d592c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58713,7 +58713,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58730,7 +58730,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -58741,7 +58741,7 @@ } }, { - "id": "3386f978-25e8-476b-8fa5-087ce3982cda", + "id": "a1162401-1485-4959-8798-da682385635c", "name": "Get a role mining session", "request": { "name": "Get a role mining session", @@ -58782,7 +58782,7 @@ }, "response": [ { - "id": "2794a22c-6a22-4202-94e4-6170fd272faa", + "id": "3f6ea8cc-b634-4a78-94a6-6f94b9b2ac6c", "name": "Returns a role mining session", "originalRequest": { "url": { @@ -58821,12 +58821,12 @@ "value": "application/json" } ], - "body": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"pruneThreshold\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"id\": \"\",\n \"createdDate\": \"\",\n \"modifiedDate\": \"\",\n \"type\": \"COMMON\"\n}", + "body": "{\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"prescribedPruneThreshold\": \"\",\n \"pruneThreshold\": \"\",\n \"potentialRoleCount\": \"\",\n \"potentialRolesReadyCount\": \"\",\n \"status\": {\n \"state\": \"\"\n },\n \"id\": \"\",\n \"createdDate\": \"\",\n \"modifiedDate\": \"\",\n \"type\": \"SPECIALIZED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f2ebaec-3fa4-415b-9e3e-cd3220a3f165", + "id": "93f331c9-95b0-41e2-a8e1-e083a60e1281", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58865,12 +58865,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "461be52b-e408-47e6-8932-166afff120c8", + "id": "9e811c5a-c10d-433f-8df7-071c4a05a424", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58909,12 +58909,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92221af9-dc28-4208-ad9b-69323b36497d", + "id": "b571e720-a2b0-42f8-8728-9e253a066176", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58953,12 +58953,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a7d94e38-b107-4200-92a3-e8541bd07a60", + "id": "2c2339f3-95b8-4df5-a932-91ceeb301589", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58997,12 +58997,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ee5d1412-0d6b-43b2-91b3-03bca1fb58ee", + "id": "8c24a42c-bf38-4384-bcc9-060a6ca9621a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59046,7 +59046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74e1ac51-a2ae-4c1e-a419-8069077eaa97", + "id": "4c3aac4e-916d-4569-8285-7d08e69e5300", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59085,7 +59085,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -59096,7 +59096,7 @@ } }, { - "id": "a23d7571-c15d-4dda-8a41-c845a40c5ace", + "id": "f4bf845c-4c0d-45f4-8ea4-4bcf5aa1f6dd", "name": "Get role mining session status state", "request": { "name": "Get role mining session status state", @@ -59138,7 +59138,7 @@ }, "response": [ { - "id": "92b72ec7-279d-4100-92f4-0e8fdd2d3a54", + "id": "ad90f10a-129f-4a7c-937c-366c058780ec", "name": "Succeeded. Returns session status", "originalRequest": { "url": { @@ -59183,7 +59183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adfd1895-b98a-41e4-b4c9-ba347e8e5d31", + "id": "470ad453-83eb-403a-a37e-fc97708ac1b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59223,12 +59223,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc144530-1937-492f-be05-f8b5e7af3d6d", + "id": "9bc79591-aa85-4359-a2eb-0216aa9078ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59273,7 +59273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6e6bb5d-bdb8-435c-90c9-e8f761cf73db", + "id": "5c2572cb-dd25-4592-984b-db16d8c9d74d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59313,12 +59313,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b8bc7d14-a30d-42ab-8e35-62dcacbed01a", + "id": "c7382aef-bafb-401a-b09f-022dbfc3631b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59358,7 +59358,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -59369,7 +59369,7 @@ } }, { - "id": "dabab275-27b0-4c83-8da6-ffffdda29ad6", + "id": "bb215de8-90be-4880-ae74-17a4a3243704", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -59457,7 +59457,7 @@ }, "response": [ { - "id": "432b28d8-229f-4add-ac78-cd22f1c43c74", + "id": "f30861e5-e3a1-4a8e-8e08-e4ca29346a47", "name": "Succeeded. Returns a list of potential role summaries for a role mining session.", "originalRequest": { "url": { @@ -59543,12 +59543,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"potentialRoleRef\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"identityCount\": \"\",\n \"entitlementCount\": \"\",\n \"identityGroupStatus\": \"\",\n \"provisionState\": \"POTENTIAL\",\n \"roleId\": \"\",\n \"density\": \"\",\n \"freshness\": \"\",\n \"quality\": \"\"\n },\n {\n \"potentialRoleRef\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"identityCount\": \"\",\n \"entitlementCount\": \"\",\n \"identityGroupStatus\": \"\",\n \"provisionState\": \"FAILED\",\n \"roleId\": \"\",\n \"density\": \"\",\n \"freshness\": \"\",\n \"quality\": \"\"\n }\n]", + "body": "[\n {\n \"potentialRoleRef\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"identityCount\": \"\",\n \"entitlementCount\": \"\",\n \"identityGroupStatus\": \"\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"\",\n \"density\": \"\",\n \"freshness\": \"\",\n \"quality\": \"\"\n },\n {\n \"potentialRoleRef\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"identityCount\": \"\",\n \"entitlementCount\": \"\",\n \"identityGroupStatus\": \"\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"\",\n \"density\": \"\",\n \"freshness\": \"\",\n \"quality\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1bd5a8c6-fcce-41b6-99fc-8d2b21784031", + "id": "9003913d-292b-48c4-8e49-784d3ae4b873", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59634,12 +59634,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df9d24c2-943e-4dfd-b94c-6783e3ad278a", + "id": "64ae6980-6d08-4008-b989-eb541bdb1a7e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59730,7 +59730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02c0d578-1020-41ca-8956-88aec78216dc", + "id": "bec67303-e332-472d-bfab-4cb55d2e0a99", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59816,12 +59816,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35c17396-6dab-45f5-a3c5-6adfe113b1ad", + "id": "eeb22bd9-4ae8-4b09-a977-c6942bae63c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59912,7 +59912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b83689fe-cacf-46af-bf7d-aef9c833db17", + "id": "872fa1a8-8373-462b-abda-12d7a8ff747b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59998,7 +59998,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -60009,7 +60009,7 @@ } }, { - "id": "6bc7aa3b-869a-4958-898f-085446964618", + "id": "277b0c81-7c35-472f-8725-74452a2bc39f", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -60062,7 +60062,7 @@ }, "response": [ { - "id": "11b4b07b-fbad-41ee-9310-5a092087cbc6", + "id": "cd9d06ca-5665-400c-8434-c9dd7c588dfc", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -60103,12 +60103,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"density\": \"\",\n \"description\": \"\",\n \"entitlementCount\": \"\",\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"freshness\": \"\",\n \"identityCount\": \"\",\n \"identityDistribution\": [\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"aliquaef5\": \"\",\n \"cillum907\": \"\",\n \"velit_8\": \"\",\n \"est_b3\": \"\"\n },\n {\n \"Utc\": \"\",\n \"est_c48\": \"\"\n }\n ]\n },\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"Ut_7\": \"\",\n \"mollit_2\": \"\"\n },\n {\n \"amet10\": \"\",\n \"Ut_01c\": \"\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"name\": \"\",\n \"provisionState\": \"COMPLETE\",\n \"quality\": \"\",\n \"roleId\": \"\",\n \"saved\": \"\",\n \"session\": {\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"name\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": {\n \"state\": \"\"\n },\n \"scopingMethod\": {\n \"state\": \"\"\n }\n },\n \"type\": \"COMMON\"\n}", + "body": "{\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"density\": \"\",\n \"description\": \"\",\n \"entitlementCount\": \"\",\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"freshness\": \"\",\n \"identityCount\": \"\",\n \"identityDistribution\": [\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"fugiat_9\": \"\",\n \"officia4a3\": \"\",\n \"eu_7e6\": \"\"\n },\n {\n \"eaa6\": \"\"\n }\n ]\n },\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"in2\": \"\"\n },\n {\n \"do_8\": \"\",\n \"in40c\": \"\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"name\": \"\",\n \"provisionState\": \"PENDING\",\n \"quality\": \"\",\n \"roleId\": \"\",\n \"saved\": \"\",\n \"session\": {\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"name\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": {\n \"state\": \"\"\n },\n \"scopingMethod\": {\n \"state\": \"\"\n }\n },\n \"type\": \"SPECIALIZED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ddf7e6e5-8602-482a-a2c7-a94af99cd5e1", + "id": "8aef21b1-0ef9-48ed-97ce-48159423d179", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60149,12 +60149,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "225f181e-8c46-4213-ad7a-4f5bb23b2688", + "id": "b97f1c78-b468-4c0b-9bc8-655127208e00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60200,7 +60200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "923753b1-f40b-400b-81a4-27b11ff655f5", + "id": "a02c2421-4f7a-4a11-bed4-a137f2b26e7d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60241,12 +60241,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "253dc855-fcf0-485b-bd81-0aae3ac16595", + "id": "35c6b63a-d7b3-48e9-91fc-05df59f0c474", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60292,7 +60292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0d56dd0-1e1d-47b3-bb45-d9be8c95b949", + "id": "3a7cc043-1a93-4329-8c88-98dccc4d3620", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60333,7 +60333,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -60344,7 +60344,7 @@ } }, { - "id": "e9076a80-4822-4cba-9342-853e843597e3", + "id": "e10c3ac0-2206-4443-a50e-243bf2ec12b8", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -60399,7 +60399,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60410,7 +60410,7 @@ }, "response": [ { - "id": "6b2a00ff-c51a-418a-8a0a-35d9737640a5", + "id": "401a76ab-9785-4794-a523-abdc53c5576b", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -60447,7 +60447,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60469,7 +60469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c036f5b-7f69-40ea-b65e-d86936dcdaf1", + "id": "d98a1c8b-e6fd-429b-9044-be3e72332dac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60506,7 +60506,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60523,12 +60523,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "feefc292-f00f-4917-ba64-669aac4d586a", + "id": "af9a3c8a-ea3a-45d6-b5d9-32c7ad283deb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60565,7 +60565,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60587,7 +60587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b302467a-d796-43fc-a768-f8912e08615d", + "id": "06a26660-951b-4980-b024-f28607da3c13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60624,7 +60624,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60641,12 +60641,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98100e08-d861-446b-ba3e-06af57d5973f", + "id": "e8aa0d18-350c-4623-9a51-e11debe0f47c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -60683,7 +60683,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60700,12 +60700,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7ae7373-a461-414c-acf2-866cc32d3c18", + "id": "995283d7-4c66-4ef8-b9ae-6f56caf581f8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60742,7 +60742,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60764,7 +60764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "553b531a-a023-461c-866a-9e7ca9024f15", + "id": "b94c32ab-441e-42c3-8c4e-faddc8040f21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60801,7 +60801,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60818,7 +60818,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -60829,7 +60829,7 @@ } }, { - "id": "34cd1e1e-d584-4b2d-87fd-7e762170fd11", + "id": "97c95ad3-9f26-4f89-8e9f-1671ed9dd98d", "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", @@ -60911,7 +60911,7 @@ }, "response": [ { - "id": "00b07e86-2944-410c-a985-31089631ef47", + "id": "861ad0c8-0354-434f-bd7d-deb0d55d7adb", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -60986,7 +60986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04dc68da-0e37-45e3-aaac-959a8eacbe0b", + "id": "cd029240-b370-473a-b727-07affd510ca9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61056,12 +61056,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "105fc40c-a919-4f46-ae70-0e23f3d32c7c", + "id": "c9a3c6b4-0f65-496e-8d7e-f1d7c7492d27", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61136,7 +61136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fcc4ea4-8ee1-4df2-b9e6-3cd493063657", + "id": "532e86b3-3e00-4baf-afe4-b16e11b5821a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61206,12 +61206,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85c3211a-f373-4753-8674-61495e2e1337", + "id": "7194a000-ab1c-4e51-b9bd-856327c26b79", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61281,7 +61281,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -61292,7 +61292,7 @@ } }, { - "id": "5f22cdad-dceb-4651-a3ba-440932b7fcf4", + "id": "7e2ab6a7-10fc-495b-8992-c00ba9a96d72", "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", @@ -61401,7 +61401,7 @@ }, "response": [ { - "id": "3c0dc730-ceda-48f3-a383-3cb5049685d0", + "id": "0694c708-c29a-4244-818c-c95d5c78e2b2", "name": "Succeeded. Returns a list of entitlements for a potential role.", "originalRequest": { "url": { @@ -61503,7 +61503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "105124bb-3f0e-4890-86a6-d77a64479ba3", + "id": "2c213a90-dc09-48c7-a519-e85749562c38", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61600,12 +61600,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2c2d0ee1-2c12-45b1-87e7-422a768a2325", + "id": "10027aa6-4345-41f6-b068-a7a1d9c67e73", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61707,7 +61707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1c5d6c0-3812-4d6e-8dd4-6ad898a190d4", + "id": "68a2e71b-4b62-4ffa-aacc-86be39ded417", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61804,12 +61804,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8fc487b-2513-4593-aef4-4e8d4b0074c8", + "id": "87b8fd9b-deee-4bda-9bd0-137558407ca4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61906,7 +61906,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -61917,7 +61917,7 @@ } }, { - "id": "ce6f0c54-fca1-4b9e-ada2-44b9bbdd9ff7", + "id": "004f4b6a-bbd6-4212-b10b-69fbd5f691c2", "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", @@ -61981,7 +61981,7 @@ }, "response": [ { - "id": "bffee5b0-b6dd-4120-8b8e-e934fcd2cf72", + "id": "4d2a2e1a-48df-4197-b497-12b2763faa51", "name": "Succeeded. Returns a map containing entitlement popularity distribution for a potential role.", "originalRequest": { "url": { @@ -62033,12 +62033,12 @@ "value": "application/json" } ], - "body": "{\n \"ex_d5\": \"\",\n \"reprehenderit_1_\": \"\"\n}", + "body": "{\n \"deserunt_a4e\": \"\",\n \"enim1\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f774c2a-0c48-414e-bb81-1fac1996ca1e", + "id": "80321091-9ded-4919-9ac9-77ad3f03b975", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62090,12 +62090,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f886adb1-8706-4ba4-a2fb-8a77340968a6", + "id": "75d2d74a-d9b2-459c-827e-93f156ce20db", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62152,7 +62152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c186d49c-519f-44fe-8af9-6949f94c4df4", + "id": "1fb5a5b6-5fab-4b96-a4e3-29bc182d7887", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62204,12 +62204,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fca13270-0f54-4241-9441-86b8a2871139", + "id": "01f89839-fefc-4f78-9b5b-b0b66f0711ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62261,7 +62261,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -62272,7 +62272,7 @@ } }, { - "id": "8dc93772-9178-471e-b80b-88f8a1f8cec8", + "id": "47dd6181-5f72-4875-9f93-adf0da9723d7", "name": "Edit entitlements for a potential role to exclude some entitlements", "request": { "name": "Edit entitlements for a potential role to exclude some entitlements", @@ -62339,7 +62339,7 @@ }, "response": [ { - "id": "c49704fb-441f-42a5-a68a-99486f080b2c", + "id": "8f08d868-84e3-4483-a44a-1926960a517e", "name": "Adds or removes entitlements from a potential role's entitlement exclusion list.", "originalRequest": { "url": { @@ -62394,12 +62394,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"density\": \"\",\n \"description\": \"\",\n \"entitlementCount\": \"\",\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"freshness\": \"\",\n \"identityCount\": \"\",\n \"identityDistribution\": [\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"aliquaef5\": \"\",\n \"cillum907\": \"\",\n \"velit_8\": \"\",\n \"est_b3\": \"\"\n },\n {\n \"Utc\": \"\",\n \"est_c48\": \"\"\n }\n ]\n },\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"Ut_7\": \"\",\n \"mollit_2\": \"\"\n },\n {\n \"amet10\": \"\",\n \"Ut_01c\": \"\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"name\": \"\",\n \"provisionState\": \"COMPLETE\",\n \"quality\": \"\",\n \"roleId\": \"\",\n \"saved\": \"\",\n \"session\": {\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"name\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": {\n \"state\": \"\"\n },\n \"scopingMethod\": {\n \"state\": \"\"\n }\n },\n \"type\": \"COMMON\"\n}", + "body": "{\n \"createdBy\": {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n \"density\": \"\",\n \"description\": \"\",\n \"entitlementCount\": \"\",\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"freshness\": \"\",\n \"identityCount\": \"\",\n \"identityDistribution\": [\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"fugiat_9\": \"\",\n \"officia4a3\": \"\",\n \"eu_7e6\": \"\"\n },\n {\n \"eaa6\": \"\"\n }\n ]\n },\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"in2\": \"\"\n },\n {\n \"do_8\": \"\",\n \"in40c\": \"\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"name\": \"\",\n \"provisionState\": \"PENDING\",\n \"quality\": \"\",\n \"roleId\": \"\",\n \"saved\": \"\",\n \"session\": {\n \"minNumIdentitiesInPotentialRole\": \"\",\n \"name\": \"\",\n \"pruneThreshold\": \"\",\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"criteria\": \"\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": {\n \"state\": \"\"\n },\n \"scopingMethod\": {\n \"state\": \"\"\n }\n },\n \"type\": \"SPECIALIZED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "821807af-c909-453a-814c-9c0e00eb43b8", + "id": "6271d4c4-0664-45fa-8a90-2dc88515a044", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62454,12 +62454,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57ae6ded-da0c-4877-b20f-c0d13fe0b305", + "id": "1442bc7a-33da-4d3f-8247-85c521c74518", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62519,7 +62519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d74de8d-4225-4752-9114-f4b1fa1d2d85", + "id": "4131a915-9890-41c2-aef8-4cad12c597b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62574,12 +62574,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00310512-dde5-4dc0-9159-792fe043bd8c", + "id": "007387ff-90fd-46db-b8b3-ddc1e034817c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62634,7 +62634,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -62645,7 +62645,7 @@ } }, { - "id": "512f4376-ef23-40b0-a8bd-31fd7d54bcf8", + "id": "41bbe2d8-6ed2-4135-a816-c43a119b3de7", "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", @@ -62745,7 +62745,7 @@ }, "response": [ { - "id": "d5637308-2db3-4b6c-ad27-edfd1f26d30b", + "id": "0fbdb270-d894-4b52-a8b0-49dc09838adf", "name": "Succeeded. Returns a list of identities for a potential role.", "originalRequest": { "url": { @@ -62833,12 +62833,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"Excepteur_d\": \"\",\n \"aute20\": \"\",\n \"sit4\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"labore2\": \"\",\n \"laboris_e\": \"\",\n \"proidentc2\": \"\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"do1\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"quis_81\": \"\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2f4b01c5-1c66-4ba4-9614-42455b8c7097", + "id": "4634dc18-0c54-4319-966e-f0a41db59a3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62926,12 +62926,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68f40bc2-8706-4dba-b772-b82c67c13c61", + "id": "4a2f8560-7a9a-4e3c-85b4-fbdad6a2285d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63024,7 +63024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6775431-06b9-441e-8048-e499c51830bb", + "id": "280f143a-6463-4db3-b91e-19d7608ea956", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63112,12 +63112,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5f43d153-c4aa-4ad1-b484-ca1607bbd5ba", + "id": "44e9117b-05d4-4636-9b1f-a0f7eaaf6f81", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63205,7 +63205,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -63216,7 +63216,7 @@ } }, { - "id": "5f6e4b5b-0a11-4002-b916-05640ef773fa", + "id": "00ba1a32-9027-4d13-bcba-ac233c339773", "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", @@ -63270,7 +63270,7 @@ }, "response": [ { - "id": "800cdc1e-d0d0-45f4-b7be-f64b373d95b2", + "id": "63843222-06b0-42f5-a359-d039e4ef8e69", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -63317,7 +63317,7 @@ "_postman_previewlanguage": "text" }, { - "id": "62c462fd-9bdd-43e3-98d3-0c0e7d4764cc", + "id": "4f31fc3f-1a8d-4c82-90a2-8e9a9dddcda5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63359,12 +63359,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c8f6c35-ae9c-4eaf-9989-739a9134330f", + "id": "232fd542-3e18-48f8-96f9-940b48caeb1e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63411,7 +63411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9ee19fd-763d-4240-ab1d-7484dc16bb88", + "id": "7be7c246-dfa8-4ea7-9da5-35a65dde6d7d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63453,12 +63453,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86b44d5b-c93f-489d-9986-41ecb9e40ee3", + "id": "bc4b737c-3ee5-4141-8e1c-6a21c7404615", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63500,7 +63500,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -63511,7 +63511,7 @@ } }, { - "id": "af7d4abe-2fc7-4fc5-beb8-a452d3978cab", + "id": "8c08aeb5-d831-4927-8604-759ca7e6acac", "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", @@ -63578,7 +63578,7 @@ }, "response": [ { - "id": "38e27a86-f46a-4ecc-82e8-4ad13a74d5db", + "id": "82aa6da6-fd7a-4683-b7fe-2f793c2937ae", "name": "Job Submitted. Returns a reportId that can be used to download the zip once complete", "originalRequest": { "url": { @@ -63633,12 +63633,12 @@ "value": "application/json" } ], - "body": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\",\n \"exportId\": \"\",\n \"status\": \"SUCCESS\"\n}", + "body": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\",\n \"exportId\": \"\",\n \"status\": \"ERROR\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "709eed1e-b1e3-4685-a808-f2c2654ee4e3", + "id": "dc311c75-e794-4668-924b-0a8b529f9b78", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63693,12 +63693,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "88c74c99-69bc-4a6d-b90f-c8e910529343", + "id": "f0f12c79-0743-40fd-951b-faa5c9451acd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63758,7 +63758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f3ebe6f-e484-48fe-b542-9a880c3bcede", + "id": "bd280325-5a46-48d7-9fa5-ddcbe76cec80", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63813,12 +63813,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c3c8d08e-6def-45ad-8606-af915b2c103c", + "id": "69070901-d877-4a83-8dbb-96d04bc7116a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63873,7 +63873,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -63884,7 +63884,7 @@ } }, { - "id": "9a4e019b-b4c7-4184-9151-456ebfda5e32", + "id": "b46286af-f69e-4a0a-bfcb-a7d7149fa76f", "name": "Retrieve status of a potential role export job", "request": { "name": "Retrieve status of a potential role export job", @@ -63949,7 +63949,7 @@ }, "response": [ { - "id": "e5a23134-d6d3-4030-986e-9a5a84f882b7", + "id": "136af968-1d49-4964-955a-126d0df1d6f2", "name": "Success. Returns the current status of this export", "originalRequest": { "url": { @@ -63992,12 +63992,12 @@ "value": "application/json" } ], - "body": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\",\n \"exportId\": \"\",\n \"status\": \"SUCCESS\"\n}", + "body": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\",\n \"exportId\": \"\",\n \"status\": \"ERROR\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6ecb226-6a2d-4c64-bf09-916c21b35b69", + "id": "e5c86665-dd77-426f-9293-48d8786718e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64040,12 +64040,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6675c0ea-3ee4-4e0b-81b5-4d5b72e8d96f", + "id": "73ea1615-3167-459c-bf61-3e9999bbf7a2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64093,7 +64093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99d2e6e2-a3e2-4475-b0c7-3f543f22d49f", + "id": "1e86548f-6b99-4bd4-a2f9-f47bb29871ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64136,12 +64136,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dff5d85c-b40d-4984-8af1-fd8320b699cd", + "id": "f70c75d1-a2c2-49fd-9b55-f5a158959169", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64184,7 +64184,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -64195,7 +64195,7 @@ } }, { - "id": "f8f50334-5a4b-4ec6-9397-6cdd6b7ef92f", + "id": "8a66618f-4214-40ad-a368-84df7d098df8", "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", @@ -64261,7 +64261,7 @@ }, "response": [ { - "id": "67c4c4e3-6b5a-4a3d-add0-a3e8890f97a8", + "id": "73e2ff60-ed22-4cf4-b8d8-50cf51a93535", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -64310,7 +64310,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8b8627e6-5c42-4265-baa0-7ff3974b2942", + "id": "b02c7c37-7a08-4ab3-805c-640151973683", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64354,12 +64354,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c0032312-f05d-46b1-8a59-82bb72a185bf", + "id": "79f2b82c-7f5b-4316-ac64-9b6f2b86c083", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64408,7 +64408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ff3e143-d6f8-4b2b-82e5-a672ccc4912b", + "id": "399d026c-595b-4e01-9cf8-7bace6217b9f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64452,12 +64452,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e877871-c0c8-422f-93ac-8dc4de92d535", + "id": "f8fd20bc-7e1b-4b38-95f0-7c17362e5800", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64501,7 +64501,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -64512,7 +64512,7 @@ } }, { - "id": "eaea3b9b-ab2f-4b14-8de6-e3817e476d2a", + "id": "30cd1b9c-48c8-4f10-b486-410e9306de75", "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.", @@ -64598,7 +64598,7 @@ }, "response": [ { - "id": "7b5f3a0d-c5e4-4b12-90a8-ac8328e04e64", + "id": "94d8af56-2924-45fc-8386-7a6b31fdd642", "name": "Accepted. Returns a potential role summary including the status of the provison request", "originalRequest": { "url": { @@ -64677,7 +64677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1e82c88-70b9-4ef6-9299-0a7440053f73", + "id": "4e20651d-e71e-4baa-a755-522a9d39a68c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64751,12 +64751,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc27c828-b01d-4e42-b882-44d100b27a50", + "id": "ecec9454-9999-4a58-88ff-0e4e8a40217c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64835,7 +64835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c9f6aca-7bd6-4e80-a1d8-112cf5820c1c", + "id": "66208336-dd3e-439b-b91e-0b1781ce300d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64909,12 +64909,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "33eae1c4-ec91-42ae-89ae-10ec31a7a790", + "id": "9bce8b4e-26bf-492c-8370-8ff4bdb52c9b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64988,12 +64988,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e6ec0afa-cfa6-4225-87f5-c135252df254", + "id": "9aa65dfa-070f-46dd-aef6-af6d0c93f9df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65067,7 +65067,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -65078,7 +65078,7 @@ } }, { - "id": "b5069d7a-fc65-4255-92e1-ae6529a6fff3", + "id": "9812da3d-a737-40fa-83c7-7d979446e36b", "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", @@ -65178,7 +65178,7 @@ }, "response": [ { - "id": "4eb2b9bf-2897-4474-8e83-a3e0c6e09029", + "id": "2a815225-edd6-45e4-b9d6-0c61ef0b3683", "name": "Succeeded. Returns a list of excluded entitlements for a potential roles.", "originalRequest": { "url": { @@ -65271,7 +65271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fc883c6-fa0d-4ab0-985c-4260f08fb1c4", + "id": "26799ee8-1987-46e4-86e2-56e7b5f5247f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65359,12 +65359,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de424269-352d-4215-b8fe-77923d87a127", + "id": "dba5e0a3-0bdb-4f63-88c5-05d0b1b4c79d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65457,7 +65457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79456656-56fc-47e2-bb18-ccea0d08bce0", + "id": "41358cc0-88da-4c49-bd7d-2b78d4b90386", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65545,12 +65545,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c59bbea-8c20-4780-9fc5-002630946615", + "id": "51fd0dd1-3548-461a-9d7f-77e99eac642d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65638,7 +65638,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -65649,7 +65649,7 @@ } }, { - "id": "77807e17-83ae-4086-b49a-406a1f8d17af", + "id": "6f0a8f27-01c1-4dc4-a2e6-bb58ff3be23e", "name": "Retrieves all draft roles", "request": { "name": "Retrieves all draft roles", @@ -65738,7 +65738,7 @@ }, "response": [ { - "id": "f9c6be69-192f-45a4-a404-51ece5e52d27", + "id": "211fee9b-0b86-4f1f-8693-db6800662ab9", "name": "Succeeded. Returns a list of draft roles for a role mining session.", "originalRequest": { "url": { @@ -65825,12 +65825,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"description\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"modified\": \"\",\n \"name\": \"\",\n \"type\": \"COMMON\"\n },\n {\n \"description\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"modified\": \"\",\n \"name\": \"\",\n \"type\": \"COMMON\"\n }\n]", + "body": "[\n {\n \"description\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"modified\": \"\",\n \"name\": \"\",\n \"type\": \"SPECIALIZED\"\n },\n {\n \"description\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"excludedEntitlements\": [\n \"\",\n \"\"\n ],\n \"modified\": \"\",\n \"name\": \"\",\n \"type\": \"SPECIALIZED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "478fd42c-dc98-4eee-a5a3-10131d4d1e23", + "id": "a7563b1a-5959-4675-b468-43b1ba572d32", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65917,12 +65917,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15e317a4-f332-48f8-b620-045f41d64bb4", + "id": "91048b06-894c-44dd-acff-0fa049809a57", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66014,7 +66014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ed270ac-4e58-496e-a996-4373448e6b58", + "id": "da044134-f16d-4834-bf91-3a9b3bbf01c6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66101,12 +66101,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "916fdc2d-aaa3-478a-a04c-0abc4d1cf178", + "id": "aed183af-528f-46d6-942b-13ea499a28fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66198,7 +66198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d99fda6-c9e9-455f-accd-2efc33abbc38", + "id": "37419085-3adb-4aff-8769-885373ab7cb6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66285,7 +66285,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -66302,7 +66302,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\nIdentityNow 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 IdentityNow knows they are the same person with the same access and attributes.\n\nIn IdentityNow, 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": "414efc1b-9755-40b2-b348-eff265675357", + "id": "6ec3b98a-11e8-44e3-8355-f442c0bef698", "name": "Attribute synchronization for single identity.", "request": { "name": "Attribute synchronization for single identity.", @@ -66344,7 +66344,7 @@ }, "response": [ { - "id": "9c6b2d1b-6b4d-476b-b3e6-321cf5dcd588", + "id": "846ec114-c58a-457a-b72b-ec536221d669", "name": "An Identity Sync job", "originalRequest": { "url": { @@ -66384,12 +66384,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"status\": \"QUEUED\",\n \"payload\": {\n \"type\": \"\",\n \"dataJson\": \"\"\n }\n}", + "body": "{\n \"id\": \"\",\n \"status\": \"SUCCESS\",\n \"payload\": {\n \"type\": \"\",\n \"dataJson\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6e67edf-da1c-436a-8e44-febad9feb356", + "id": "26edf5fb-89ba-4510-8082-54770940af76", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66429,12 +66429,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6397661d-0944-4b42-bcd5-8f2e78f544a6", + "id": "6f1178fd-0c69-40d9-b715-a9fdd77af0d7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66479,7 +66479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ed546b3-e25d-476d-92ba-f1d7d49f6f5a", + "id": "e8ad9fd7-5acb-43a9-b4d8-9286b5469bfc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66519,12 +66519,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c9949b59-37a0-4092-9315-cd865295bd99", + "id": "42f3c99a-2dc1-4133-abdb-8bd20771aca1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -66564,12 +66564,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "59c56f9b-6aa0-404d-9a46-db90f332796e", + "id": "781c6d5c-2d9b-406c-b891-38828dc423f1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66614,7 +66614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a489cba9-f2ef-4980-bb06-f4662a431237", + "id": "93f55ec1-45c0-4e12-8f10-8d926640f754", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66654,7 +66654,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -66665,7 +66665,7 @@ } }, { - "id": "b3df4f46-b0a5-4310-8473-877bac5ae92a", + "id": "8650a97c-f62b-4984-9248-140ef151f459", "name": "List Identities", "request": { "name": "List Identities", @@ -66749,7 +66749,7 @@ }, "response": [ { - "id": "bee89e5a-978b-4f42-ba09-263888452f48", + "id": "f852e446-d219-4d99-9054-7eb60b0bfecf", "name": "List of identities.", "originalRequest": { "url": { @@ -66842,12 +66842,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"alias\": \"\",\n \"emailAddress\": \"\",\n \"processingState\": \"OK\",\n \"identityStatus\": \"DISABLED\",\n \"managerRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"isManager\": false,\n \"lastRefresh\": \"\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"\",\n \"manuallyUpdated\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"alias\": \"\",\n \"emailAddress\": \"\",\n \"processingState\": \"ERROR\",\n \"identityStatus\": \"LOCKED\",\n \"managerRef\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"isManager\": false,\n \"lastRefresh\": \"\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"\",\n \"manuallyUpdated\": \"\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"alias\": \"\",\n \"emailAddress\": \"\",\n \"processingState\": \"OK\",\n \"identityStatus\": \"ACTIVE\",\n \"managerRef\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"isManager\": false,\n \"lastRefresh\": \"\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"\",\n \"manuallyUpdated\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"alias\": \"\",\n \"emailAddress\": \"\",\n \"processingState\": \"OK\",\n \"identityStatus\": \"REGISTERED\",\n \"managerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"isManager\": false,\n \"lastRefresh\": \"\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"\",\n \"manuallyUpdated\": \"\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ddc43201-f23e-4450-9246-8ec40c081aeb", + "id": "288066dc-56bb-434f-a4b9-8fec2fc116a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66940,12 +66940,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c3a7726a-12f4-49b1-8b21-d12c884d7a5c", + "id": "f82f999b-3fc9-4797-97ef-135ea3d1b139", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67043,7 +67043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff017927-182a-4d08-ac58-6add070c71de", + "id": "99bca7dd-71ad-4905-b175-9b2da12c446d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67136,12 +67136,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "30eec375-98e4-4be2-abc2-8f1c364b5f34", + "id": "146f3000-5014-41d1-8f29-375365b571d8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67239,7 +67239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dcb94d1-4528-42b8-baf9-6f20e6acd252", + "id": "75c76602-9afa-44e8-b6d2-afd1d8b433cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67332,7 +67332,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -67343,7 +67343,7 @@ } }, { - "id": "79e6532d-e303-4321-8833-89aaed18a24b", + "id": "49266cb9-026f-47b5-9b96-12d6d3fc610f", "name": "Identity Details", "request": { "name": "Identity Details", @@ -67384,7 +67384,7 @@ }, "response": [ { - "id": "7625ea00-95bb-400c-b053-c7cf6db205ff", + "id": "f1623155-3b6a-48ab-b9da-862b97055ea8", "name": "An identity object", "originalRequest": { "url": { @@ -67423,12 +67423,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"alias\": \"\",\n \"emailAddress\": \"\",\n \"processingState\": \"OK\",\n \"identityStatus\": \"REGISTERED\",\n \"managerRef\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"isManager\": false,\n \"lastRefresh\": \"\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"\",\n \"manuallyUpdated\": \"\"\n }\n}", + "body": "{\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"alias\": \"\",\n \"emailAddress\": \"\",\n \"processingState\": \"ERROR\",\n \"identityStatus\": \"PENDING\",\n \"managerRef\": {\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"isManager\": false,\n \"lastRefresh\": \"\",\n \"attributes\": {},\n \"lifecycleState\": {\n \"stateName\": \"\",\n \"manuallyUpdated\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da755d04-8589-4b01-ac4c-7ef17444221d", + "id": "e11082a2-7341-4727-958b-ac4bea2e4665", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67467,12 +67467,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "208ebfac-6c41-40b5-94f1-82771f0be007", + "id": "a8d87a54-2805-4030-8d1b-6fca281f8556", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67516,7 +67516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad5fe8c0-780e-4969-84a9-6d3b55a9a71d", + "id": "4dfa79ba-83d0-4e16-9d2c-5bdcdf1c826a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67555,12 +67555,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "66480376-223d-4f03-ac13-9e5d90f8c3ae", + "id": "7e68a260-1b25-41ed-bbb7-d1a86a598032", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67599,12 +67599,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6e7f878-3b01-4af1-b5ab-3ab18f2f9279", + "id": "9dc8fc64-3658-4bcd-bae4-75073aa6a3c8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67648,7 +67648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca9ac7a0-3235-48db-841c-be41701c6646", + "id": "eab8e924-adde-4a61-b9e4-6ac68e746695", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67687,7 +67687,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -67698,7 +67698,7 @@ } }, { - "id": "c4516ac9-4507-4363-931e-0818aa6271b8", + "id": "f7c14ead-dc73-4713-b08d-ab643213b4eb", "name": "Deletes an identity.", "request": { "name": "Deletes an identity.", @@ -67739,7 +67739,7 @@ }, "response": [ { - "id": "3de25018-7819-43d6-b27f-f04be9f76c98", + "id": "2f60d09d-74e5-43e6-b554-e396ce7e2079", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -67773,7 +67773,7 @@ "_postman_previewlanguage": "text" }, { - "id": "50ffe236-5f88-4c4a-b531-1932239d6037", + "id": "125e8e86-56c4-4188-b4b8-5871d6b4a8dc", "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": { @@ -67817,7 +67817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1e96731-6702-4437-9d2b-e6c18be8131f", + "id": "a506a7f8-3156-4faa-8b05-5c9738ee52b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67861,7 +67861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bad44df1-5f6e-464f-80d8-53e90db755a7", + "id": "4fd8d698-15be-47f9-91d5-a2d861aa78df", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67900,12 +67900,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a6a24d4-5e7f-40cf-9215-f9b64463b207", + "id": "09754ed6-0ba4-43f2-82db-82c20c07bb2d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67944,12 +67944,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "28c5f1de-2b7a-4a8e-8fdd-d730f4aecb4d", + "id": "e6e04f04-a005-45f1-8cde-d14b554089c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67993,7 +67993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "250ac8ef-56d3-4b72-a961-440af41e9183", + "id": "efdae90b-b5fe-4867-807a-9cd4b75a6a1b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68032,7 +68032,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -68043,7 +68043,7 @@ } }, { - "id": "469bb16a-d89a-49fb-b905-bf8245ac06b2", + "id": "b01ed366-d7e6-401a-a8f7-4f9206ec750b", "name": "Process a list of identityIds", "request": { "name": "Process a list of identityIds", @@ -68086,7 +68086,7 @@ }, "response": [ { - "id": "e3df22ce-61b6-4432-b87a-0d64181dcd73", + "id": "76b4ef49-1012-49dd-b9f6-24bc156b449c", "name": "Object containing the DTO type TASK_RESULT and the job id for the task", "originalRequest": { "url": { @@ -68143,7 +68143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9665a23a-e323-4964-b06f-64ebed412fe6", + "id": "acfc58c1-1679-465c-ae80-bec67e48cd58", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68195,12 +68195,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "075338d0-b6c5-481e-b9eb-52eb0f7330af", + "id": "abfa5c67-be7d-4c31-ae4b-6c1d782c3171", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68257,7 +68257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e68ca013-9202-4996-a562-8219df0a613b", + "id": "e89ac75f-c863-4b7c-9b32-cf460467c870", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68309,12 +68309,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f578b0d4-f1ff-4481-a530-78abe4122690", + "id": "472b2c21-a247-42e8-91a8-5aeb4c6cc96a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68366,12 +68366,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4d15ffff-55f0-4db1-a618-e8a4e5c4723e", + "id": "14bfc4b8-6cfe-4500-b3e1-7e597c170c0d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68428,7 +68428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17fd6a8e-5abf-493e-8dd6-fc96b8540a77", + "id": "c6a4fa82-ca0a-4834-9057-b96db7990262", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68480,7 +68480,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -68497,7 +68497,7 @@ "description": "", "item": [ { - "id": "5aeb202b-fe96-47b5-a0e9-5c3f7193ac29", + "id": "4f124244-cec8-4bef-ae9b-ea06667f16e7", "name": "Lists all the identities", "request": { "name": "Lists all the identities", @@ -68572,7 +68572,7 @@ }, "response": [ { - "id": "1ceb8f28-316c-445a-b42e-50d306b3b697", + "id": "60d01425-34cb-448b-96d4-0443160816b9", "name": "List of identities for the customer.", "originalRequest": { "url": { @@ -68661,7 +68661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bbb5c8c-0c7d-467d-a58c-4045961ac6a0", + "id": "f1c30edf-6af2-40b1-abfd-426e417c7b62", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68745,12 +68745,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e59efc6-ad67-4350-bd80-103f13562908", + "id": "679a6aca-ecb1-4540-bb09-cf71dbac958b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68839,7 +68839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42e4fec9-53a5-46ba-a978-f2d255730b1d", + "id": "c6ead1a7-ec76-4d33-aa4a-b88bd61fe868", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68923,12 +68923,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "32fc4166-a839-4ad0-b1f5-450ff6e816a7", + "id": "3f2040a2-0d75-458e-90fb-73397836f1e7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69017,7 +69017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9268024-ea69-43e5-bd5e-f06512792230", + "id": "777f1fb1-8c56-4026-9a56-a6912e3fdc14", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69101,7 +69101,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -69112,7 +69112,7 @@ } }, { - "id": "7f8d2da6-ac81-4714-8014-4a3405c5a0cc", + "id": "75e179bd-88cf-4519-901c-61cdadaf04c8", "name": "Get latest snapshot of identity", "request": { "name": "Get latest snapshot of identity", @@ -69153,7 +69153,7 @@ }, "response": [ { - "id": "0ff0f3c7-fbac-4c60-9bb0-2a1adc721fbf", + "id": "d09f491e-7354-4efc-b4ef-1ed5820f93ff", "name": "The identity object.", "originalRequest": { "url": { @@ -69192,12 +69192,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"displayName\": \"\",\n \"snapshot\": \"\",\n \"deletedDate\": \"\",\n \"accessItemCount\": {\n \"mollit_9d3\": \"\",\n \"dolord8\": \"\"\n },\n \"attributes\": {\n \"aliquip_a2c\": \"\"\n }\n}", + "body": "{\n \"id\": \"\",\n \"displayName\": \"\",\n \"snapshot\": \"\",\n \"deletedDate\": \"\",\n \"accessItemCount\": {\n \"cupidatat_8_2\": \"\"\n },\n \"attributes\": {\n \"nostrud67a\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e0987e4d-f026-4989-9c07-8d792f4eaaee", + "id": "ea597ea9-db42-4652-92b6-694cfa6362f3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69236,12 +69236,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68d809c9-18df-4ee3-8c73-c7991efe76ce", + "id": "55a70cea-9aec-4c05-b8d6-64c2d53b0d4e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69285,7 +69285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c004f8c4-071b-435a-9b1e-8c6c89e80943", + "id": "062067b4-9e5a-47a3-a0df-523e34e827e6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69324,12 +69324,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c1faff67-294c-42e5-8eae-349533a053dd", + "id": "74f81d63-6497-4dcd-bf8f-5711a2cc8203", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69373,7 +69373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1ace77c-32b7-43a0-845b-44d584e46aa9", + "id": "bdef9acc-0cba-45fc-aef2-7fcb36c6020e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69412,7 +69412,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -69423,7 +69423,7 @@ } }, { - "id": "f0bb8e35-c9f9-493d-bb62-6d9203b8da88", + "id": "6f665d84-0e01-40dd-b8b1-61c359b3fbc9", "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", @@ -69475,7 +69475,7 @@ }, "response": [ { - "id": "093b8c5b-4a0d-46d9-8456-daedf9fb08d7", + "id": "ec17e0ac-ad03-435e-9051-5132e76d31c3", "name": "The list of access items.", "originalRequest": { "url": { @@ -69530,7 +69530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1e59774-9de1-44b6-83e8-fb00190bd54c", + "id": "0a432ba7-6333-4774-9234-f36b79dcdc77", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69580,12 +69580,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90ac8855-3826-46e1-8a53-f26e989bfd6e", + "id": "a10898e6-732b-4dca-92eb-68135a3ff696", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69640,7 +69640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fc1ba9f-a056-49be-b08f-75a1b14c9875", + "id": "0d8098b8-5c0d-4c12-9465-c4c8015e7733", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69690,12 +69690,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7d8bf3b4-7c65-4ee1-a0dc-4bcba21453c7", + "id": "503d88ee-33d1-4cc2-9bd9-5d98a56d3115", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -69745,12 +69745,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f0d63d39-3642-4c1e-b39c-fe5ed7034f9f", + "id": "ba742eba-910d-4fcf-8024-be9ab1380f64", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69800,7 +69800,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -69811,7 +69811,7 @@ } }, { - "id": "01a70b87-faca-4859-b1ca-109c0d023d92", + "id": "e8d111a9-4079-48e8-becf-b61b9045426a", "name": "Lists all the snapshots for the identity", "request": { "name": "Lists all the snapshots for the identity", @@ -69899,7 +69899,7 @@ }, "response": [ { - "id": "e0c5fe82-b19c-40b2-972a-122caf7dd535", + "id": "61142cd3-b59c-4f24-ae19-0a8b47055c8f", "name": "A list of identity summary for each snapshot.", "originalRequest": { "url": { @@ -69990,7 +69990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4477dbf3-7308-4a98-9b7b-3690499bc9df", + "id": "7fba4c2d-8fcc-4d4a-87e5-12101d4ca57b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70076,12 +70076,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0f12edcb-73f6-41a1-bda7-76a3038e68d4", + "id": "23c3c451-4d28-4cee-99b0-9e0d0dc290aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70172,7 +70172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d3c8eb9-20e9-4ca9-944c-efc92a6a60b1", + "id": "3d22e664-54b4-4976-aeca-86a1abcbd496", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70258,12 +70258,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4db429e8-7946-4f3b-adcf-fb5a2a79f984", + "id": "d12be61c-e0cb-4bcf-b587-4f853473ea63", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -70349,12 +70349,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3294ea0c-cd27-4347-b39c-add8b6f1d534", + "id": "e1269c6a-4de8-4952-b563-9719600736a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70440,7 +70440,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -70451,7 +70451,7 @@ } }, { - "id": "eaae6c23-5886-48f7-9381-fdb8ff6b9638", + "id": "8bdeeb48-5230-4c9e-8ff0-5490e6f46113", "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", @@ -70548,7 +70548,7 @@ }, "response": [ { - "id": "5b59d547-0f76-4d7f-aab2-4790e24388ac", + "id": "f1797bc0-08e8-482f-b238-56001f99770c", "name": "A summary list of identity changes in date histogram format.", "originalRequest": { "url": { @@ -70648,7 +70648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab3032d0-2d3a-4ae4-94c0-9ae31097de19", + "id": "56530b52-40b9-4b57-acb6-654a62b42cff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70743,12 +70743,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d6a5ce6-eaab-46e2-8aeb-7a938e77255c", + "id": "3ee2f2b9-ceb0-4690-88a7-965dc7819bd2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70848,7 +70848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f058475-821d-4a33-a645-72f2f71deb99", + "id": "784c6c2f-26f2-4f5f-928e-8f16a8cc5ec1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70943,12 +70943,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0277c5cf-dc18-4506-bb6c-b0039fbbc484", + "id": "6fdc0584-9d1f-4b53-a09d-597bc3972eb9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -71043,12 +71043,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d76e9f8-0fd3-40a2-9494-a9c68e66feed", + "id": "772e03cc-9375-4af5-9c4e-37117bbb67b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71143,7 +71143,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -71154,7 +71154,7 @@ } }, { - "id": "e9917e03-a6a5-4e0e-a24b-22cd049b7405", + "id": "11d57d72-c0e3-4ab8-acc7-68cbf7d36b45", "name": "Gets an identity snapshot at a given date", "request": { "name": "Gets an identity snapshot at a given date", @@ -71207,7 +71207,7 @@ }, "response": [ { - "id": "aca6c86f-8ec9-406c-be0b-65b4fda6242d", + "id": "2f820d68-8446-4780-bc4d-7a212332980a", "name": "The identity object.", "originalRequest": { "url": { @@ -71248,12 +71248,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"displayName\": \"\",\n \"snapshot\": \"\",\n \"deletedDate\": \"\",\n \"accessItemCount\": {\n \"mollit_9d3\": \"\",\n \"dolord8\": \"\"\n },\n \"attributes\": {\n \"aliquip_a2c\": \"\"\n }\n}", + "body": "{\n \"id\": \"\",\n \"displayName\": \"\",\n \"snapshot\": \"\",\n \"deletedDate\": \"\",\n \"accessItemCount\": {\n \"cupidatat_8_2\": \"\"\n },\n \"attributes\": {\n \"nostrud67a\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7c02b5d9-0207-4edd-91dd-210dfed96001", + "id": "14940ea8-c827-4d92-83eb-7c45d8fe26f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71294,12 +71294,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "defaaa00-93c2-4246-9952-71b11d913b7a", + "id": "90d10cf0-8423-45ce-9bf0-941495ecd697", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71345,7 +71345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94c5159a-64f4-480f-9ff8-16c706626752", + "id": "0651453a-119e-4544-bb33-aaf6e99a57ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71386,12 +71386,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f930d6e-6060-4949-b612-1c3a8e69fa5e", + "id": "a582c31f-f248-41ae-98ee-2fbc17ab284b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -71432,12 +71432,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1cb97ae1-69a5-488b-af86-36adec7f8419", + "id": "c4aa8a51-58f7-4e40-a101-9174ffa837e4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71478,7 +71478,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -71489,7 +71489,7 @@ } }, { - "id": "0bc148bd-3d0f-45ce-bcad-6ff33406f1b2", + "id": "3e68828a-e8ca-4051-b48f-3aaa4f383fe1", "name": "Gets the list of identity access items at a given date filterd by item type", "request": { "name": "Gets the list of identity access items at a given date filterd by item type", @@ -71553,7 +71553,7 @@ }, "response": [ { - "id": "3215dcaf-3db7-493e-90e5-6b0dfa861a8b", + "id": "d3ea20b7-8156-4a95-abd6-da9eaad4cb4c", "name": "The identity object.", "originalRequest": { "url": { @@ -71610,7 +71610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a593915-7167-4e5f-8ff7-a28d9a6c691c", + "id": "fad22142-ff14-4da3-99f9-f29c02076096", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71662,12 +71662,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9db9579e-453d-487f-b647-21ee53256360", + "id": "5533a8b9-1936-406f-9afe-1dabd2b625cd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71724,7 +71724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c528164f-877e-4cee-850a-857fecc2e1a9", + "id": "fd77e029-2f0a-4bca-b53d-1d49001e087c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71776,12 +71776,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "25428501-3cd2-482f-b339-59e763f320f0", + "id": "7ba90539-835a-4406-bced-236e94b11e08", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -71833,12 +71833,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "51fd2e94-74d6-43cb-9298-9a20fdd0d153", + "id": "8d1664de-3a2d-4fa8-86ab-ad6765326bc8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71890,7 +71890,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -71901,7 +71901,7 @@ } }, { - "id": "8c1fae5f-d8ad-4f58-9a0e-77f861096af1", + "id": "1b14b697-8b2a-491e-9eee-9eda15ec1a56", "name": "Lists all events for the given identity", "request": { "name": "Lists all events for the given identity", @@ -72016,7 +72016,7 @@ }, "response": [ { - "id": "5b9c1ac2-3fdb-476e-aef7-085ae92fb328", + "id": "97ebd338-a24d-40a7-a965-a7170a242251", "name": "The list of events for the identity", "originalRequest": { "url": { @@ -72116,7 +72116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0495df3-3f06-41f7-a19a-ac6c2730e1a8", + "id": "2410c154-f5f3-462b-bd17-12ad66dbd5ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72211,12 +72211,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "32268dc6-3c9d-40d7-ae09-187ae5da02e2", + "id": "70be6dbe-eff8-4037-ade4-138297279df5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72316,7 +72316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54d274ba-31db-4ed4-8f7a-646f3088394d", + "id": "00da8b86-0754-4fd7-b1e7-c36b0d6411ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72411,12 +72411,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57c6f65d-3062-41c0-b15b-f01453a81f94", + "id": "b835a45d-e29b-4124-9edc-3774ba96cab1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -72511,12 +72511,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c60c749d-b2b0-48da-88c2-c3bebbc37ea3", + "id": "3a5764be-95d4-4362-b336-b17a2021fde6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72616,7 +72616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5edbbd63-1c7e-4fd6-afa2-ebabdbae88da", + "id": "c1190d5d-a053-43b9-bc83-321e5e05afe7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72711,7 +72711,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -72722,7 +72722,7 @@ } }, { - "id": "dd0727d9-861a-4b2b-823c-5997e06eac8c", + "id": "29262990-6bf8-4667-aa61-ea115be36af6", "name": "Gets the start date of the identity", "request": { "name": "Gets the start date of the identity", @@ -72764,7 +72764,7 @@ }, "response": [ { - "id": "e0cfc6af-e1b0-430d-bde2-f391b79ea13d", + "id": "523848cc-55ca-4642-aea8-a32c9eda080b", "name": "The start date of the identity", "originalRequest": { "url": { @@ -72809,7 +72809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1522fbda-d732-46e0-9627-01954ccf9b23", + "id": "93c78aae-fdc4-4cc5-b3c1-6a6ae8cad7ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72849,12 +72849,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "54d8faf9-abdf-4234-9e34-414311426985", + "id": "f30a314b-1909-4e15-b0e0-9fa2901f3031", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72899,7 +72899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3509141-b318-4bc6-b336-f3497ce87214", + "id": "cea3c071-60ae-47a4-b3b4-51bfcc483719", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72939,12 +72939,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a71f468c-6395-42c5-984c-445fd6d87bea", + "id": "f45fef23-59ef-4755-89b3-76f82fcc3161", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -72984,12 +72984,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "413fece0-9824-4a68-9c45-1b54d0e47edf", + "id": "2fafb942-6ad1-4d74-b2d2-0a452732a05b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73029,7 +73029,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -73040,7 +73040,7 @@ } }, { - "id": "2a1da556-3049-44aa-814e-8f9fc640c191", + "id": "03212154-748f-4568-88de-40c6aa57eeaf", "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", @@ -73146,7 +73146,7 @@ }, "response": [ { - "id": "f816a001-be50-4319-b160-686c20f25efe", + "id": "3c27caa2-4f50-4eb1-ae31-bc788cf6c01b", "name": "A IdentityCompare object with difference details for each access item type", "originalRequest": { "url": { @@ -73241,12 +73241,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"accessItemDiff\": {\n \"Lorem_64d\": {},\n \"proident_24\": {}\n }\n },\n {\n \"accessItemDiff\": {\n \"pariatur8\": {},\n \"fugiat__\": {}\n }\n }\n]", + "body": "[\n {\n \"accessItemDiff\": {\n \"ina\": {},\n \"dolore_04\": {}\n }\n },\n {\n \"accessItemDiff\": {\n \"fugiat_0ab\": {},\n \"fugiatd3\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a8e24dd1-5f97-4675-98c7-1e6610f54498", + "id": "a82f4535-df51-4e2e-9886-647fd65e9bc1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73341,12 +73341,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "08f85d2f-65c0-4349-b663-6c5694b086b3", + "id": "66932b24-8762-4e1a-ad42-7f34c488bd27", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73446,7 +73446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9186462-cf3d-4ae3-842b-2cb71a22bfb5", + "id": "51a00651-663f-440c-b9dc-4ff6860390d0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73541,12 +73541,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1320e16b-566c-408a-b89c-0da35dbfaff8", + "id": "e6f3e70d-4c6b-4311-b656-6b417eaecae2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -73641,12 +73641,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e76f532-8161-4899-9b65-afc07d057a27", + "id": "4aa27f23-9150-4172-9428-8cd2ba4d81db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73741,7 +73741,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -73752,7 +73752,7 @@ } }, { - "id": "42cd4abf-93ad-4650-b8af-09a51e059fbc", + "id": "eaa90ea2-5f65-48d6-8a74-90b5f81ec217", "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", @@ -73864,7 +73864,7 @@ }, "response": [ { - "id": "e12f95e1-2929-43b3-b948-21d185bbdb03", + "id": "578c9b4f-19a7-4374-9ed6-dc093afc29b5", "name": "A list of events for the identity", "originalRequest": { "url": { @@ -73965,7 +73965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b463c289-451d-4ac6-ae8e-7706956f8e25", + "id": "e29aaf8b-04dc-4ef6-9733-7299fd7779d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74061,12 +74061,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3da2ee1-c62d-4a5c-98dd-3b1ef3bb6038", + "id": "93ea4d73-e38a-4003-a26b-7588508402f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74167,7 +74167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b2166c4-dd39-4240-84c0-0d1beff40516", + "id": "639ffeeb-8df4-4f1f-9095-8fc13a8ced4a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74263,12 +74263,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "153c5e98-6c47-4f1c-bef3-5c59fa112737", + "id": "430e7138-8e5a-4677-8dd1-319ea1b7a691", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -74364,12 +74364,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "708925bc-08a3-44b7-af0f-7fae4c12e2e6", + "id": "8cfaee43-5e83-4ce6-af06-88bd4f405af4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74465,7 +74465,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -74482,7 +74482,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 IdentityNow.\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 IdentityNow, 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": "474fb544-3f1d-4457-88ab-28b6e24ad66f", + "id": "15f40cde-1cfb-4907-b56e-56135d6c283a", "name": "Identity Profiles list", "request": { "name": "Identity Profiles list", @@ -74557,7 +74557,7 @@ }, "response": [ { - "id": "bdd39586-939d-4778-9ec0-0b27cb846391", + "id": "19b67b98-46ee-4351-b468-f6eaa02b1a5b", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -74641,12 +74641,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad_df2\": true,\n \"eiusmod9f\": true,\n \"fugiat_a75\": \"officia mollit veniam\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"quis_b\": false,\n \"est_f60\": -17159097,\n \"eu_1e\": \"sint aute dolore\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n },\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"dolor8e\": \"elit\",\n \"eiusmod8\": 98994298\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"tempor_c2\": -36173940\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", + "body": "[\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"exercitation62\": true\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"elit2\": true,\n \"sit_7b\": -97936905.4038954\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n },\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"elit_a1\": \"aute ut ut eu\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"aute85\": -26043769,\n \"Duis_a\": \"Excepteur consequat qui fugiat sit\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2fedd3ca-8e92-47f4-a01a-e07c7a369be1", + "id": "3b75cad2-e632-4f4c-bd93-0816db1c0107", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74730,12 +74730,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e3b6d894-8554-4486-949d-3f86f8ab6778", + "id": "e257a15a-0e2b-43a0-a80d-aef36c48c3db", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74824,7 +74824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0be87584-7667-46ea-bd2c-46e08ef458b4", + "id": "558652b0-b60f-44f8-b021-66454efbac83", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74908,12 +74908,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c8649167-558b-4f0b-b7cf-f68acf8be284", + "id": "2f782d21-99db-41b3-b5ee-19edcb0ff0bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75002,7 +75002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81e2eaad-9201-4e48-8d2c-93080c34ad74", + "id": "dcc97870-15ba-4703-b2f1-dd32b0945eb8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75086,7 +75086,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -75097,7 +75097,7 @@ } }, { - "id": "2fb86f7d-1524-42ae-be73-4a4f790bf117", + "id": "df1a95cb-5ec9-45be-9b06-6c4163cff724", "name": "Create an Identity Profile", "request": { "name": "Create an Identity Profile", @@ -75128,7 +75128,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"inc\": 1856713.5968970805,\n \"dolore6f\": true\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"occaecat_957\": 64071913\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Ut_4\": true,\n \"autef\": \"reprehenderit incididunt aute Lorem\",\n \"ea_b12\": 51738800,\n \"indf\": 32718296.365031123,\n \"officia388\": -61070122.89741331\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit691\": true,\n \"adipisicing_7b2\": -5239941,\n \"pariaturf68\": -80776194,\n \"est_b\": -79993136\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -75139,7 +75139,7 @@ }, "response": [ { - "id": "54bf04c6-8002-4ab0-a3dd-6305a8836781", + "id": "92f24fbf-c6f0-4c67-8084-7f88feddba56", "name": "The created Identity Profile", "originalRequest": { "url": { @@ -75173,7 +75173,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"inc\": 1856713.5968970805,\n \"dolore6f\": true\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"occaecat_957\": 64071913\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Ut_4\": true,\n \"autef\": \"reprehenderit incididunt aute Lorem\",\n \"ea_b12\": 51738800,\n \"indf\": 32718296.365031123,\n \"officia388\": -61070122.89741331\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit691\": true,\n \"adipisicing_7b2\": -5239941,\n \"pariaturf68\": -80776194,\n \"est_b\": -79993136\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -75190,12 +75190,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"inc\": 1856713.5968970805,\n \"dolore6f\": true\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"occaecat_957\": 64071913\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", + "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Ut_4\": true,\n \"autef\": \"reprehenderit incididunt aute Lorem\",\n \"ea_b12\": 51738800,\n \"indf\": 32718296.365031123,\n \"officia388\": -61070122.89741331\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit691\": true,\n \"adipisicing_7b2\": -5239941,\n \"pariaturf68\": -80776194,\n \"est_b\": -79993136\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "428a5dbd-952c-4fb4-93b7-f3d592873ab4", + "id": "e0aeff9b-e59e-4079-8c97-134d32e648d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75229,7 +75229,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"inc\": 1856713.5968970805,\n \"dolore6f\": true\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"occaecat_957\": 64071913\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Ut_4\": true,\n \"autef\": \"reprehenderit incididunt aute Lorem\",\n \"ea_b12\": 51738800,\n \"indf\": 32718296.365031123,\n \"officia388\": -61070122.89741331\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit691\": true,\n \"adipisicing_7b2\": -5239941,\n \"pariaturf68\": -80776194,\n \"est_b\": -79993136\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -75246,12 +75246,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b09efaca-954c-40f4-ac78-740d17738fbb", + "id": "8a8cb10c-9a2d-4eab-8975-e919bc2e44f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75285,7 +75285,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"inc\": 1856713.5968970805,\n \"dolore6f\": true\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"occaecat_957\": 64071913\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Ut_4\": true,\n \"autef\": \"reprehenderit incididunt aute Lorem\",\n \"ea_b12\": 51738800,\n \"indf\": 32718296.365031123,\n \"officia388\": -61070122.89741331\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit691\": true,\n \"adipisicing_7b2\": -5239941,\n \"pariaturf68\": -80776194,\n \"est_b\": -79993136\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -75307,7 +75307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5405c76f-fc00-48df-aa5d-ac18a01a8347", + "id": "6d9b9356-0a95-48b1-b477-898d0e6214de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75341,7 +75341,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"inc\": 1856713.5968970805,\n \"dolore6f\": true\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"occaecat_957\": 64071913\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Ut_4\": true,\n \"autef\": \"reprehenderit incididunt aute Lorem\",\n \"ea_b12\": 51738800,\n \"indf\": 32718296.365031123,\n \"officia388\": -61070122.89741331\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit691\": true,\n \"adipisicing_7b2\": -5239941,\n \"pariaturf68\": -80776194,\n \"est_b\": -79993136\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -75358,12 +75358,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "30d1bb7e-0d9d-4b69-8a76-c361697cf6f8", + "id": "e5bcce64-4d69-4eda-9502-850e6ab9e8ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75397,7 +75397,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"inc\": 1856713.5968970805,\n \"dolore6f\": true\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"occaecat_957\": 64071913\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Ut_4\": true,\n \"autef\": \"reprehenderit incididunt aute Lorem\",\n \"ea_b12\": 51738800,\n \"indf\": 32718296.365031123,\n \"officia388\": -61070122.89741331\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit691\": true,\n \"adipisicing_7b2\": -5239941,\n \"pariaturf68\": -80776194,\n \"est_b\": -79993136\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -75419,7 +75419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0b65965-f16e-44ab-a6de-f37cd4d06581", + "id": "57cfd4e4-a687-4898-87bc-fe55c291c70d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75453,7 +75453,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"inc\": 1856713.5968970805,\n \"dolore6f\": true\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"occaecat_957\": 64071913\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Ut_4\": true,\n \"autef\": \"reprehenderit incididunt aute Lorem\",\n \"ea_b12\": 51738800,\n \"indf\": 32718296.365031123,\n \"officia388\": -61070122.89741331\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit691\": true,\n \"adipisicing_7b2\": -5239941,\n \"pariaturf68\": -80776194,\n \"est_b\": -79993136\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -75470,7 +75470,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -75481,7 +75481,7 @@ } }, { - "id": "ae909a40-cd47-4238-ad28-9be90b5d2c27", + "id": "0db6006f-a059-497b-b4ad-b0525686783b", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -75524,7 +75524,7 @@ }, "response": [ { - "id": "30d5c8f2-9d37-429a-9124-fa2958f57767", + "id": "e20b4e54-1cbd-4a52-9c14-17079f52579d", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -75581,7 +75581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e61601e-244e-4cf8-8a74-afc2eee1d585", + "id": "c6d8e3ca-88ee-4c23-ae0a-81fd7d431daf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75633,12 +75633,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cf4633b5-8a39-47c1-b58a-5ad85aa1a2b5", + "id": "ac5939a7-67e9-4b23-9ed7-9facbb95955d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75695,7 +75695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25809c12-ce34-437a-903b-5db0c018eaaf", + "id": "b4a7711e-8fb0-4ea9-a4ae-d6e9ffcbb8fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75747,12 +75747,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "377dc12d-ebef-4a13-90ea-1c748caf7969", + "id": "0b7f6c43-3f9a-4075-a047-9c7e68b9d98d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75809,7 +75809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3bc8f15-5df4-429f-b174-085b011e2e98", + "id": "f6ab898c-fa03-43f4-947d-4b7b4457b86e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75861,7 +75861,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -75872,7 +75872,7 @@ } }, { - "id": "98266bcb-67d8-4900-8e42-546cfa1d544f", + "id": "bd7b78e0-2751-4c49-893f-12973e4b7f18", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -75948,7 +75948,7 @@ }, "response": [ { - "id": "74a7d94d-c162-48ee-8f2f-c4b215c000d8", + "id": "8cdef90e-2bf5-4254-9497-d1762ec9bd2b", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -76033,12 +76033,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit3d7\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"enim1a6\": \"\",\n \"adipisicing180\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"pariatur_\": \"\",\n \"ex_ec\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sunt40\": \"\",\n \"Excepteur7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "body": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad5d\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nisi_233\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sintc60\": \"\",\n \"anim_32\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"proident_c3\": \"\",\n \"cupidatat52\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5b0bb3d0-4799-4e8d-bc91-2f55f5664b89", + "id": "cca0a266-9b8c-4894-b9e9-702085c14cc2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76123,12 +76123,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b96d2415-115c-4686-97f8-86903d85665d", + "id": "bc51dca0-3e19-4750-8b99-e8b76589e43b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76218,7 +76218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec9bcd69-e602-4390-a962-a88a1454dd92", + "id": "426066d2-4599-4b3d-b389-9adeef43c6b8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76303,12 +76303,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85a841d7-9193-4356-a1e7-1e87f2c781e6", + "id": "bfa53f73-450f-4e66-a191-7b984f84ed3a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -76393,12 +76393,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "702758ae-8484-4e9d-9d26-c3de473f151d", + "id": "4e0e9a58-1912-4d08-b957-90d2b128d1a9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76488,7 +76488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "512f0767-9e86-4cd4-ab5e-b0c988c5bf7e", + "id": "f83315d2-e0cc-4c69-b63d-9adeab7518eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76573,7 +76573,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -76584,7 +76584,7 @@ } }, { - "id": "d95cd243-4e01-4dcf-81f1-dda006fde257", + "id": "d68f9bc5-0325-4cb8-9e0f-329a91163df5", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -76616,7 +76616,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit3d7\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"enim1a6\": \"\",\n \"adipisicing180\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"pariatur_\": \"\",\n \"ex_ec\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sunt40\": \"\",\n \"Excepteur7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad5d\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nisi_233\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sintc60\": \"\",\n \"anim_32\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"proident_c3\": \"\",\n \"cupidatat52\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76627,7 +76627,7 @@ }, "response": [ { - "id": "74568dfd-107b-4d3a-adaa-9f858f733763", + "id": "50ba03d5-e403-40fb-b533-f4dce7aba300", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -76662,7 +76662,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit3d7\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"enim1a6\": \"\",\n \"adipisicing180\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"pariatur_\": \"\",\n \"ex_ec\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sunt40\": \"\",\n \"Excepteur7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad5d\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nisi_233\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sintc60\": \"\",\n \"anim_32\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"proident_c3\": \"\",\n \"cupidatat52\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76679,12 +76679,12 @@ "value": "application/json" } ], - "body": "{\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"pariatur_d\": {},\n \"cupidatat_7\": {},\n \"sunt_3_f\": {},\n \"dolore_cfc\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"laborum_ce\": {},\n \"mollit9ca\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"cupidatat_cc\": {},\n \"occaecat_a\": {},\n \"est0\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"dolor6\": {},\n \"enim1\": {},\n \"dof97\": {},\n \"sed_0\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"eiusmod_c\": {},\n \"qui_4\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"aliqua_6a\": {},\n \"do_30c\": {},\n \"in_5\": {},\n \"proidentd\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", + "body": "{\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"in_3\": {},\n \"eiusmodb5\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"officia7\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"elit_d\": {},\n \"voluptate_e\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"laboris_3\": {},\n \"sint_075\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"ad2d2\": {},\n \"ex71\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"deserunt_9dc\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b0a8829c-b6c9-44d4-8af7-e650019882a3", + "id": "c4b57dd3-14a9-498e-87d9-29b12411690d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76719,7 +76719,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit3d7\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"enim1a6\": \"\",\n \"adipisicing180\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"pariatur_\": \"\",\n \"ex_ec\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sunt40\": \"\",\n \"Excepteur7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad5d\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nisi_233\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sintc60\": \"\",\n \"anim_32\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"proident_c3\": \"\",\n \"cupidatat52\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76736,12 +76736,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7a689b64-86dd-46bf-b1b7-d3b0c4678f62", + "id": "9437ab4f-0b4e-421f-abf1-6b2be39a51f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76776,7 +76776,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit3d7\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"enim1a6\": \"\",\n \"adipisicing180\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"pariatur_\": \"\",\n \"ex_ec\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sunt40\": \"\",\n \"Excepteur7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad5d\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nisi_233\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sintc60\": \"\",\n \"anim_32\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"proident_c3\": \"\",\n \"cupidatat52\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76798,7 +76798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6883bf22-3ab1-4fa2-b49a-d3b9096f05a2", + "id": "f82599bf-3fcd-4f0c-9ef8-90739f994d97", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76833,7 +76833,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit3d7\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"enim1a6\": \"\",\n \"adipisicing180\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"pariatur_\": \"\",\n \"ex_ec\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sunt40\": \"\",\n \"Excepteur7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad5d\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nisi_233\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sintc60\": \"\",\n \"anim_32\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"proident_c3\": \"\",\n \"cupidatat52\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76850,12 +76850,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4db37bec-d935-4f6f-94e3-039aaa5713d2", + "id": "9ae5f309-f27a-4ac7-aca4-babbf318ec32", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76890,7 +76890,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit3d7\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"enim1a6\": \"\",\n \"adipisicing180\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"pariatur_\": \"\",\n \"ex_ec\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sunt40\": \"\",\n \"Excepteur7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad5d\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nisi_233\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sintc60\": \"\",\n \"anim_32\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"proident_c3\": \"\",\n \"cupidatat52\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76912,7 +76912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "183b0809-0c4b-4947-b595-c12b84d02a0e", + "id": "98050a28-e6d5-46e1-983e-ff19f1da6f49", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76947,7 +76947,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit3d7\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"enim1a6\": \"\",\n \"adipisicing180\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"pariatur_\": \"\",\n \"ex_ec\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sunt40\": \"\",\n \"Excepteur7\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", + "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad5d\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nisi_233\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": false,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"sintc60\": \"\",\n \"anim_32\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"proident_c3\": \"\",\n \"cupidatat52\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76964,7 +76964,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -76975,7 +76975,7 @@ } }, { - "id": "d5f1a590-8239-4e32-9782-9f63991cdf5f", + "id": "b960be1e-a80f-453b-a167-799be9bb4635", "name": "Generate Identity Profile Preview", "request": { "name": "Generate Identity Profile Preview", @@ -77007,7 +77007,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"deserunt908\": \"pariatur et\",\n \"labore_5fa\": 66973600\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Lorem1c9\": false,\n \"velit_c\": false,\n \"proident9\": -4520146.536343843\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_9\": -63491813.94375032\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"cillum670\": false,\n \"aute_0\": 34468377,\n \"aliquip_e4\": true,\n \"veniam_fa\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -77018,7 +77018,7 @@ }, "response": [ { - "id": "0f460f6e-48e0-41de-a1a9-43dd58cda5b0", + "id": "9dde7854-4661-4795-9cf4-6e2ba23db0d8", "name": "Object representing the preview object with all of the identity attributes using the current mappings.", "originalRequest": { "url": { @@ -77053,7 +77053,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"deserunt908\": \"pariatur et\",\n \"labore_5fa\": 66973600\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Lorem1c9\": false,\n \"velit_c\": false,\n \"proident9\": -4520146.536343843\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_9\": -63491813.94375032\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"cillum670\": false,\n \"aute_0\": 34468377,\n \"aliquip_e4\": true,\n \"veniam_fa\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -77070,12 +77070,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"previewAttributes\": [\n {\n \"name\": \"\",\n \"value\": {},\n \"previousValue\": {},\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"name\": \"\",\n \"value\": {},\n \"previousValue\": {},\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"identity\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"previewAttributes\": [\n {\n \"name\": \"\",\n \"value\": {},\n \"previousValue\": {},\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n },\n {\n \"name\": \"\",\n \"value\": {},\n \"previousValue\": {},\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "95fbadf5-a4ba-478c-bd64-6eb81880830e", + "id": "e92c8899-0e29-44c6-b75d-d5843699b629", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77110,7 +77110,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"deserunt908\": \"pariatur et\",\n \"labore_5fa\": 66973600\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Lorem1c9\": false,\n \"velit_c\": false,\n \"proident9\": -4520146.536343843\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_9\": -63491813.94375032\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"cillum670\": false,\n \"aute_0\": 34468377,\n \"aliquip_e4\": true,\n \"veniam_fa\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -77127,12 +77127,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1004fa0-ced1-4769-8d45-cfdc441b0b68", + "id": "08bd1c45-6b82-4655-b5ad-29345fbd878b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77167,7 +77167,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"deserunt908\": \"pariatur et\",\n \"labore_5fa\": 66973600\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Lorem1c9\": false,\n \"velit_c\": false,\n \"proident9\": -4520146.536343843\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_9\": -63491813.94375032\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"cillum670\": false,\n \"aute_0\": 34468377,\n \"aliquip_e4\": true,\n \"veniam_fa\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -77189,7 +77189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c674525-a00e-46e5-8748-18cf213d3cc9", + "id": "fa7cff41-61ea-4b30-bcde-ead15356dac3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77224,7 +77224,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"deserunt908\": \"pariatur et\",\n \"labore_5fa\": 66973600\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Lorem1c9\": false,\n \"velit_c\": false,\n \"proident9\": -4520146.536343843\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_9\": -63491813.94375032\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"cillum670\": false,\n \"aute_0\": 34468377,\n \"aliquip_e4\": true,\n \"veniam_fa\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -77241,12 +77241,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34b68ca9-52b9-411d-9a6e-1cb6c86adede", + "id": "3436e2ba-fcb5-4755-8fc8-ce61b34c4d27", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77281,7 +77281,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"deserunt908\": \"pariatur et\",\n \"labore_5fa\": 66973600\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Lorem1c9\": false,\n \"velit_c\": false,\n \"proident9\": -4520146.536343843\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_9\": -63491813.94375032\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"cillum670\": false,\n \"aute_0\": 34468377,\n \"aliquip_e4\": true,\n \"veniam_fa\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -77303,7 +77303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "151f1c25-2b84-4ae4-a6cb-88883181d367", + "id": "840f80aa-3b02-46e4-befb-7762e4b2c845", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77338,7 +77338,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"deserunt908\": \"pariatur et\",\n \"labore_5fa\": 66973600\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Lorem1c9\": false,\n \"velit_c\": false,\n \"proident9\": -4520146.536343843\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_9\": -63491813.94375032\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"cillum670\": false,\n \"aute_0\": 34468377,\n \"aliquip_e4\": true,\n \"veniam_fa\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -77355,7 +77355,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -77366,7 +77366,7 @@ } }, { - "id": "b2778ce8-df50-4112-9c40-85a208045df1", + "id": "93ab7039-b5d7-4680-aa75-72940b7baff7", "name": "Gets a single Identity Profile", "request": { "name": "Gets a single Identity Profile", @@ -77407,7 +77407,7 @@ }, "response": [ { - "id": "79fcd09d-049e-47de-bda9-97b36be2a169", + "id": "0ddfb674-eae1-4633-8d5a-0b0e897f9a0c", "name": "An Identity Profile object", "originalRequest": { "url": { @@ -77446,12 +77446,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"inc\": 1856713.5968970805,\n \"dolore6f\": true\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"occaecat_957\": 64071913\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", + "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Ut_4\": true,\n \"autef\": \"reprehenderit incididunt aute Lorem\",\n \"ea_b12\": 51738800,\n \"indf\": 32718296.365031123,\n \"officia388\": -61070122.89741331\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit691\": true,\n \"adipisicing_7b2\": -5239941,\n \"pariaturf68\": -80776194,\n \"est_b\": -79993136\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "244002d9-c0cf-455d-adf6-4ab1362d3f92", + "id": "ec655ccd-ab2c-46ad-855c-2a185441ec06", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77490,12 +77490,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2b4a0fa-e4f9-493c-b07a-e62cd9eecd46", + "id": "d9bafc3c-5485-4d77-a9d4-47c81b6775f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77539,7 +77539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8853adf8-113b-4f16-a5b9-d4aaf7098c48", + "id": "dac4dcdd-9abf-4b73-b352-aba46de13bd9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77578,12 +77578,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27253d9c-b64d-4518-969b-ef2f146897af", + "id": "67efbc1c-966b-4b2d-93f4-87efd4b6cbc4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77622,12 +77622,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5f4fc4d5-e03f-4315-a23a-c0bfd4fac47c", + "id": "ee7416f5-8b2d-455a-a243-ef37dd604a78", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77671,7 +77671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf302f2b-9e46-413a-ab8e-78aaed0c398f", + "id": "c35a0c4a-442b-4e83-b8df-2744a98b6592", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77710,7 +77710,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -77721,7 +77721,7 @@ } }, { - "id": "f2fad658-e5f1-4b4e-a85d-49a1ab5f48ef", + "id": "4a03a3d2-1f53-4e55-bce2-9aea911866d7", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -77762,7 +77762,7 @@ }, "response": [ { - "id": "fc44eb9e-b9b0-4b86-83f3-4e231c4ef75a", + "id": "ff37346d-8bc5-4433-931b-e0cd41145a4f", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -77801,12 +77801,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"launched\": \"\",\n \"completionStatus\": \"Terminated\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"launched\": \"\",\n \"completionStatus\": \"TempError\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb8482f6-f312-4673-87d0-d7b81ef80b61", + "id": "19bcb656-1ff5-49f5-b1db-d5c05fe66bae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77845,12 +77845,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d65c5456-06ee-45b8-860f-baed913b0ecc", + "id": "1ecb3957-4da1-4834-bcc6-975aa3473e17", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77894,7 +77894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49367cdd-09d8-4727-9e13-5e7a83f6e295", + "id": "4541c6a6-7693-466d-83d7-8591a289d2a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77933,12 +77933,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3add500-90ba-4f3d-8fd1-70c6ca53a92e", + "id": "ba702d46-1253-4223-bdd2-4f26cb5f9a1a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77977,12 +77977,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "918891d1-0493-4458-8765-e27617e4928d", + "id": "f0a4d2b7-82e6-4bd7-a342-446354cc2283", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78026,7 +78026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a899157a-fc87-4905-a51f-9a2952e0de50", + "id": "04466379-ea3d-419e-9798-913994f39f02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78065,7 +78065,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -78076,7 +78076,7 @@ } }, { - "id": "1f410db8-d081-4ebd-a5de-5a594fbe536f", + "id": "2834437a-6527-4cec-82b6-c88a892970c8", "name": "Update the Identity Profile", "request": { "name": "Update the Identity Profile", @@ -78119,7 +78119,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -78130,7 +78130,7 @@ }, "response": [ { - "id": "e0c165e3-b345-447c-8bc6-1ac9ec7181f0", + "id": "d7534bc6-aba2-4201-bdbd-bb96ade072bf", "name": "The updated Identity Profile.", "originalRequest": { "url": { @@ -78165,7 +78165,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -78182,12 +78182,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"inc\": 1856713.5968970805,\n \"dolore6f\": true\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"occaecat_957\": 64071913\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", + "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"priority\": \"\",\n \"identityRefreshRequired\": false,\n \"identityCount\": \"\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Ut_4\": true,\n \"autef\": \"reprehenderit incididunt aute Lorem\",\n \"ea_b12\": 51738800,\n \"indf\": 32718296.365031123,\n \"officia388\": -61070122.89741331\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"reprehenderit691\": true,\n \"adipisicing_7b2\": -5239941,\n \"pariaturf68\": -80776194,\n \"est_b\": -79993136\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c2bb611-38e6-4848-a1bf-ac925795e3bd", + "id": "6a53cc10-217f-4226-9bc7-5898829d5ac8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78222,7 +78222,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -78239,12 +78239,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "daeea199-88cf-40f8-a16e-42139eeb7c80", + "id": "5e95de0d-1c4f-45e7-a045-01bae21b86a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78279,7 +78279,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -78301,7 +78301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a72d656-538f-410e-a23b-2ba34563b116", + "id": "b0a67a9f-ef02-44c7-9b64-b11d1d3ee0f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78336,7 +78336,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -78353,12 +78353,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48d324df-e6ee-440e-b644-90ced1ff8919", + "id": "52cddfac-7cc9-4c82-b529-33a36448d0ef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78393,7 +78393,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -78410,12 +78410,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "59c85bf1-cbf4-4094-a2b5-933439003361", + "id": "a906d2a8-3614-4ff8-9069-ca636bcf6b8c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78450,7 +78450,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -78472,7 +78472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c25f9cf8-5521-4880-bdc9-78f6c0b3fca3", + "id": "a1e6fe3e-86a7-48f6-a759-5ae17fc58afb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78507,7 +78507,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -78524,7 +78524,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -78535,7 +78535,7 @@ } }, { - "id": "7db268e6-6e4e-4094-80ad-d1a761c779ae", + "id": "eb7a6438-63cd-4766-ab4e-4484fffec28b", "name": "Default identity attribute config", "request": { "name": "Default identity attribute config", @@ -78577,7 +78577,7 @@ }, "response": [ { - "id": "cb7f1fa5-ef8d-4f8a-9676-e57e2e1336b2", + "id": "ed600616-4c07-4789-bf82-1ff76afdef24", "name": "An Identity Attribute Config object", "originalRequest": { "url": { @@ -78617,12 +78617,12 @@ "value": "application/json" } ], - "body": "{\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"nisi910\": \"proident\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"amet_7\": -96658128.80039705,\n \"ex_7f1\": 24252844\n }\n }\n }\n ]\n}", + "body": "{\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"veniam_db\": 47621340.29128754\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"in_27c\": true,\n \"adaa\": 92529809.540786\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "afe8aee7-bd36-4117-8b7b-5f282d02a267", + "id": "612a8946-3491-48c0-a382-f2e765f5dc33", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78662,12 +78662,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26d5c5ed-cc36-4858-ae97-a4396d6220f3", + "id": "008e9c95-721d-46ba-a6f5-d8ce1f350b88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78712,7 +78712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43bb0ba5-68d6-4b25-8857-881cfb3ec758", + "id": "47f2eef6-294d-41bf-b9ec-4c3f4900e26b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78752,12 +78752,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10463acd-e5c7-46c3-93a3-639f1c3a7e63", + "id": "3f290d64-2487-42d5-9ddc-195f560292e3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78797,12 +78797,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "20865f98-34a6-4346-a6f0-12d05ba758fd", + "id": "1f41cb7f-b1ca-4824-a904-1ac61db1832f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78847,7 +78847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9df6edc0-c809-4382-b7eb-269585950389", + "id": "d184dbb5-ddd5-4ea9-8e1c-08dee0daf70f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78887,7 +78887,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -78898,7 +78898,7 @@ } }, { - "id": "04aa6cee-b111-464e-95ed-d2f433d2f6ea", + "id": "add1827c-2fdf-4092-a820-693289d661ef", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -78940,7 +78940,7 @@ }, "response": [ { - "id": "1f213d29-b776-4f84-916f-0a326f3cc6d9", + "id": "1d87758d-dd63-4c00-a2f6-e694e39d8dbf", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -78985,7 +78985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e53dd1ab-5cef-4840-9588-e3bc13773851", + "id": "87fea32b-5455-49b2-be9d-5f20a4d3bef9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79025,12 +79025,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b9dab9b7-452f-4b95-b4b9-189417de5197", + "id": "3180549d-ffc7-4a44-8af7-07806492a589", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79075,7 +79075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cacfaf63-4e47-43bb-8e39-c8bc4d19117c", + "id": "36641c1f-d5b9-4a3e-a4c3-a71230aad299", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79115,12 +79115,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5cb4e8d-5d92-45c9-bf75-7eb630f7a70a", + "id": "1f39f474-ec6e-400a-8383-34bea6bdf901", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79160,12 +79160,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "25dc194e-d189-45a8-ae01-212f9917da98", + "id": "54c93339-35e2-46f7-a475-ac7a3e823cd1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79210,7 +79210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e4c5c6d-ee07-476e-a706-52773cc7d267", + "id": "91f29956-1f43-420f-a594-6c309081b3a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79250,7 +79250,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -79267,7 +79267,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 IdentityNow: '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 IdentityNow manages users' access to apps and sources for each lifecycle state.\n\nIn IdentityNow, 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, IdentityNow 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, IdentityNow provisions that access.\n\nAdministrators can also use the 'Provisioning' tab to configure email notifications for IdentityNow 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": "7815d1c2-a367-4c2f-97ba-424f8567749e", + "id": "1693b565-9512-4515-aa5a-eb405e686515", "name": "Lifecycle State", "request": { "name": "Lifecycle State", @@ -79320,7 +79320,7 @@ }, "response": [ { - "id": "a92b5a0e-d680-4e57-b1b2-37fa9b512909", + "id": "91bb52b5-7ee0-448a-9eaf-a48ebbf6618e", "name": "lifecycle-state", "originalRequest": { "url": { @@ -79361,12 +79361,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"technicalName\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"identityCount\": \"\",\n \"emailNotificationOption\": {\n \"notifyManagers\": \"\",\n \"notifyAllAdmins\": \"\",\n \"notifySpecificUsers\": \"\",\n \"emailAddressList\": [\n \"\",\n \"\"\n ]\n },\n \"accountActions\": [\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"accessProfileIds\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"technicalName\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"identityCount\": \"\",\n \"emailNotificationOption\": {\n \"notifyManagers\": \"\",\n \"notifyAllAdmins\": \"\",\n \"notifySpecificUsers\": \"\",\n \"emailAddressList\": [\n \"\",\n \"\"\n ]\n },\n \"accountActions\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"accessProfileIds\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f5fe6f5-cb11-4c0f-988b-c80cdd89c8a1", + "id": "91108738-87eb-45d0-a59b-0cb5c6cdc997", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79407,12 +79407,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c00f2091-7025-4ae8-82e7-09782ab9c842", + "id": "7eb5373e-f677-444a-956e-8c91b85005d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79458,7 +79458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b6a531d-8fe3-417a-9238-4a4dcea2c6b9", + "id": "afdbfdd6-e93e-4fa5-8525-e11dfe6524de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79499,12 +79499,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca82de99-ea87-44b8-b146-cdf28a5c734f", + "id": "221cfbf5-c56b-4582-8af3-c5ea99f49668", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79550,7 +79550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15da1dc3-af11-4f72-aaa7-59597c2a3233", + "id": "9af7f44f-869e-4b97-b4ce-a37dd842c465", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79591,7 +79591,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -79602,7 +79602,7 @@ } }, { - "id": "cdf3d021-2ca9-4b3c-9954-a400817403af", + "id": "edf45a99-5ef0-42b6-bee6-17d73024d390", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -79657,7 +79657,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79668,7 +79668,7 @@ }, "response": [ { - "id": "d1dab158-1883-4eaa-9950-414930a05ded", + "id": "c066833c-809f-4388-b15d-f00e7c1dd5d3", "name": "Updated lifecycle-state.", "originalRequest": { "url": { @@ -79705,7 +79705,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79722,12 +79722,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"technicalName\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"identityCount\": \"\",\n \"emailNotificationOption\": {\n \"notifyManagers\": \"\",\n \"notifyAllAdmins\": \"\",\n \"notifySpecificUsers\": \"\",\n \"emailAddressList\": [\n \"\",\n \"\"\n ]\n },\n \"accountActions\": [\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"accessProfileIds\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"technicalName\": \"\",\n \"description\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"enabled\": \"\",\n \"identityCount\": \"\",\n \"emailNotificationOption\": {\n \"notifyManagers\": \"\",\n \"notifyAllAdmins\": \"\",\n \"notifySpecificUsers\": \"\",\n \"emailAddressList\": [\n \"\",\n \"\"\n ]\n },\n \"accountActions\": [\n {\n \"action\": \"ENABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n },\n {\n \"action\": \"DISABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"accessProfileIds\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1819cfe-bc22-41a1-803b-12621b1091b5", + "id": "28d5640b-a21b-4cb6-8eec-ebb88a522693", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79764,7 +79764,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79781,12 +79781,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85a19817-0869-4f36-975f-ff77676afd33", + "id": "82a25a26-59a7-4bcc-af0f-427333b1d487", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79823,7 +79823,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79845,7 +79845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dc8c0b7-fce8-4b2f-bcdf-905dd1952795", + "id": "b4566e1a-4934-49c4-b46e-bfe9185f15fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79882,7 +79882,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79899,12 +79899,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2fb5f2b2-e547-4f1c-ac2d-3a39cc41d901", + "id": "2db1dae3-3962-47f3-b0f7-e7b02235ed91", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79941,7 +79941,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79963,7 +79963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "166feb99-2087-4410-853d-155a6c98aaa9", + "id": "d7f62b49-4988-4c0f-943e-2affe63a584b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80000,7 +80000,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -80017,7 +80017,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -80034,7 +80034,7 @@ "description": "Read and write operations for managing client data and statuses", "item": [ { - "id": "99ad6b93-3e52-4fb4-9088-3e5b014491ce", + "id": "d3fdf00a-67e9-44c4-be33-011345781aa8", "name": "Specified Managed Client Status.", "request": { "name": "Specified Managed Client Status.", @@ -80059,7 +80059,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "CCG" } ], "variable": [ @@ -80086,7 +80086,7 @@ }, "response": [ { - "id": "0ae5f4ea-943e-4d31-9114-6fddd6dd9b08", + "id": "29b078cc-7a7c-4f8a-a60f-884048f8ba06", "name": "Responds with Managed Client Status having the given ID and Type.", "originalRequest": { "url": { @@ -80106,7 +80106,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "CCG" } ], "variable": [] @@ -80136,12 +80136,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {},\n \"status\": \"WARNING\",\n \"type\": \"VA\",\n \"timestamp\": \"\"\n}", + "body": "{\n \"body\": {},\n \"status\": \"CONFIGURING\",\n \"type\": null,\n \"timestamp\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5496c64-1125-40e6-bcd4-dc964a72f531", + "id": "ac5be7cd-6685-4110-a632-f36265b9345f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80161,7 +80161,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "CCG" } ], "variable": [] @@ -80191,12 +80191,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9fb30b69-1606-463c-8e5e-20f32dd18fe8", + "id": "8ac44e43-15aa-417e-aa09-c0aa3152b5d0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80216,7 +80216,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "CCG" } ], "variable": [] @@ -80251,7 +80251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed4a726e-cfc4-453c-87e5-2b827f1f8580", + "id": "8f01e8e4-1cf3-4d90-a37b-946555e1a807", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80271,7 +80271,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "CCG" } ], "variable": [] @@ -80301,12 +80301,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ed71cee-8037-434a-a432-f30d47807610", + "id": "594d6d7d-a5a9-444e-b4fd-f6c567133678", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80326,7 +80326,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "CCG" } ], "variable": [] @@ -80356,12 +80356,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fcac803f-da2f-427d-bce4-695202bc347d", + "id": "486ed6e8-2dff-4d19-a2c5-50b8bbed2ab7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80381,7 +80381,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "CCG" } ], "variable": [] @@ -80416,7 +80416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34e1ae44-3caf-476e-913f-47c6a7541426", + "id": "f70cce12-899b-4cf7-bd07-b08b97149435", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80436,7 +80436,7 @@ "type": "text/plain" }, "key": "type", - "value": "INTERNAL" + "value": "CCG" } ], "variable": [] @@ -80466,7 +80466,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -80477,7 +80477,7 @@ } }, { - "id": "4f171128-8592-4710-98b4-3b87cd37e8d3", + "id": "faa11368-115a-458c-84f1-4b83de70a7b9", "name": "Handle status request from client", "request": { "name": "Handle status request from client", @@ -80521,7 +80521,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"WARNING\",\n \"type\": \"VA\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"CONFIGURING\",\n \"type\": null,\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80532,7 +80532,7 @@ }, "response": [ { - "id": "70bbb222-23db-4cd0-9abd-a3823ce3fbd3", + "id": "b5e4534e-3084-4033-9a4a-ab3c8e4c60c6", "name": "Responds with the updated Managed Client Status.", "originalRequest": { "url": { @@ -80568,7 +80568,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"WARNING\",\n \"type\": \"VA\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"CONFIGURING\",\n \"type\": null,\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80585,12 +80585,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {},\n \"status\": \"FAILED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\n}", + "body": "{\n \"body\": {},\n \"status\": \"FAILED\",\n \"type\": null,\n \"timestamp\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f22cc777-94b9-4c3d-9a7d-887f7e4664ec", + "id": "ab01769e-68f4-4320-a4c1-8d22bad2c734", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80626,7 +80626,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"WARNING\",\n \"type\": \"VA\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"CONFIGURING\",\n \"type\": null,\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80643,12 +80643,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc2b80bf-6dbd-4609-b34f-16a86f39cb0c", + "id": "fae62047-987f-43f2-8563-08af4f22c137", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80684,7 +80684,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"WARNING\",\n \"type\": \"VA\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"CONFIGURING\",\n \"type\": null,\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80706,7 +80706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa47d27e-d5ca-472e-8f37-a4a8fc7e628e", + "id": "ca8733cf-67ab-41b4-aa7f-c53c2b4c66d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80742,7 +80742,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"WARNING\",\n \"type\": \"VA\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"CONFIGURING\",\n \"type\": null,\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80759,12 +80759,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05f7d142-be77-48fe-b354-29afee754fac", + "id": "37d34275-ce64-45c3-be5a-3fb0097439a2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80800,7 +80800,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"WARNING\",\n \"type\": \"VA\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"CONFIGURING\",\n \"type\": null,\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80817,12 +80817,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e440aace-e6d0-4650-8ca3-64bb6290ccd2", + "id": "93063e3e-8b65-4fad-9936-bb640012de02", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80858,7 +80858,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"WARNING\",\n \"type\": \"VA\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"CONFIGURING\",\n \"type\": null,\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80880,7 +80880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b2a84fe-bc8d-4ef8-9a9f-222bdca2d92f", + "id": "d898e31f-8cf2-426f-9142-a46727ea2dc1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80916,7 +80916,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"WARNING\",\n \"type\": \"VA\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"CONFIGURING\",\n \"type\": null,\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80933,7 +80933,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -80950,7 +80950,7 @@ "description": "Operations for accessing and managing client Clusters, including Log Configuration", "item": [ { - "id": "a94b77a8-d3e2-4639-8d30-4953164ef79a", + "id": "c4e53551-45fe-412d-8038-102dc14f936c", "name": "Get a specified ManagedCluster.", "request": { "name": "Get a specified ManagedCluster.", @@ -80991,7 +80991,7 @@ }, "response": [ { - "id": "b1b8d52f-0699-4d2c-8999-7ef60c02ab08", + "id": "ae9728df-ab2d-44d0-a047-0f82b7747e4f", "name": "Responds with ManagedCluster having the given ID.", "originalRequest": { "url": { @@ -81030,12 +81030,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"clientType\": \"VA\",\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"idn\",\n \"configuration\": {\n \"nisi_ce\": \"\",\n \"velit3\": \"\",\n \"non250\": \"\"\n },\n \"keyPair\": {\n \"publicKey\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKeyCertificate\": \"\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"\",\n \"region\": \"\"\n },\n \"keystore\": \"\"\n },\n \"description\": \"\",\n \"redis\": {\n \"redisHost\": \"\",\n \"redisPort\": \"\"\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"sint_e5\": \"INFO\"\n }\n },\n \"operational\": false,\n \"status\": \"\",\n \"publicKeyCertificate\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKey\": \"\",\n \"alertKey\": \"\",\n \"clientIds\": [\n \"\",\n \"\"\n ],\n \"serviceCount\": 0,\n \"ccId\": \"0\"\n}", + "body": "{\n \"id\": \"\",\n \"clientType\": \"VA\",\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"idn\",\n \"configuration\": {\n \"reprehenderit_d\": \"\",\n \"labored_c\": \"\"\n },\n \"keyPair\": {\n \"publicKey\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKeyCertificate\": \"\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"\",\n \"region\": \"\"\n },\n \"keystore\": \"\"\n },\n \"description\": \"\",\n \"redis\": {\n \"redisHost\": \"\",\n \"redisPort\": \"\"\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"tempord\": \"INFO\",\n \"amet__7\": \"INFO\"\n }\n },\n \"operational\": false,\n \"status\": \"\",\n \"publicKeyCertificate\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKey\": \"\",\n \"alertKey\": \"\",\n \"clientIds\": [\n \"\",\n \"\"\n ],\n \"serviceCount\": 0,\n \"ccId\": \"0\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e0098d8e-367e-4911-aa98-029c42b6ed39", + "id": "7c499524-7818-469a-8b90-94d7bcc4cd51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81074,12 +81074,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a9e577ef-5bc9-4729-bde4-943265b6273f", + "id": "60b069ad-f953-4ce1-974c-ae28573ca22d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81123,7 +81123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6cfcfc1-4c5a-46c1-aa98-39e49384da3d", + "id": "f859b598-1301-4873-a3e9-de5cba3b8f4b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81162,12 +81162,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d43058ad-107c-4591-be22-87b168a86ecf", + "id": "ca798183-0cf6-4de5-897f-1978c70c4205", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81206,12 +81206,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8583f3d9-357a-41f1-a2b0-4d7c2a368ab1", + "id": "649a7769-1b8b-4de8-87d5-d2625fe67dc9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81255,7 +81255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cce0f9b2-caa9-436f-91f2-1d40e4876fd7", + "id": "a62c21d6-99e3-458e-ab97-d8079d11becf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81294,7 +81294,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -81305,7 +81305,7 @@ } }, { - "id": "45e84618-4e2f-481b-9498-6b986361b604", + "id": "5849c13d-b26b-4591-904b-e551cdcdc2b5", "name": "Get managed cluster's log configuration", "request": { "name": "Get managed cluster's log configuration", @@ -81347,7 +81347,7 @@ }, "response": [ { - "id": "c18b4e1d-5bde-4de6-9025-ade72b1736f1", + "id": "af19c71d-df4c-4936-93b2-aa8a25378a0c", "name": "Log configuration of ManagedCluster matching given cluster ID", "originalRequest": { "url": { @@ -81387,12 +81387,12 @@ "value": "application/json" } ], - "body": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"aliquip6_\": \"INFO\",\n \"cillumb1\": \"INFO\",\n \"nisi_d\": \"INFO\",\n \"aliqua_33\": \"INFO\",\n \"sed2f\": \"INFO\"\n }\n}", + "body": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"temporfe3\": \"INFO\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2738987b-3fa8-431f-a86d-53b1380b02ae", + "id": "7429264e-92f7-4532-8d78-93c781a70748", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81432,12 +81432,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "730b011d-63fe-46ce-a28f-bb68d48c19bd", + "id": "777433a2-b3a9-4bca-9e55-77f52babe63f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81482,7 +81482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e7a63b4-6043-4246-a661-56f057ed54aa", + "id": "ab3e83ad-5ae0-402a-b8e3-8fb4087d7f83", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81522,12 +81522,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f9542be-6922-4ade-ba18-c3d1996eaca9", + "id": "c849b035-319a-4fc0-8aa0-a983b71f4d1c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81567,12 +81567,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3997bf75-70b5-46d7-9c48-e9be50abf651", + "id": "6511e579-1ec3-4362-9629-abc0d267c3b6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81617,7 +81617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cb4f1dc-1def-45d2-a0bd-4cd76e8fe82d", + "id": "924fcd12-2e47-467e-aa64-926a947dc210", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81657,7 +81657,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -81668,7 +81668,7 @@ } }, { - "id": "4b811158-78c5-406f-8104-68edc28bce8b", + "id": "9a19f849-4f13-4524-a7a0-9a87a69c535e", "name": "Update managed cluster's log configuration", "request": { "name": "Update managed cluster's log configuration", @@ -81712,7 +81712,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"aliquip6_\": \"INFO\",\n \"cillumb1\": \"INFO\",\n \"nisi_d\": \"INFO\",\n \"aliqua_33\": \"INFO\",\n \"sed2f\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"temporfe3\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81723,7 +81723,7 @@ }, "response": [ { - "id": "341b1428-165a-43f3-ad07-d2e42a76ca98", + "id": "36ce5d6c-9b95-4375-8f6e-0bc1de6ed27d", "name": "Responds with updated ClientLogConfiguration for given ManagedCluster", "originalRequest": { "url": { @@ -81759,7 +81759,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"aliquip6_\": \"INFO\",\n \"cillumb1\": \"INFO\",\n \"nisi_d\": \"INFO\",\n \"aliqua_33\": \"INFO\",\n \"sed2f\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"temporfe3\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81776,12 +81776,12 @@ "value": "application/json" } ], - "body": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"aliquip6_\": \"INFO\",\n \"cillumb1\": \"INFO\",\n \"nisi_d\": \"INFO\",\n \"aliqua_33\": \"INFO\",\n \"sed2f\": \"INFO\"\n }\n}", + "body": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"temporfe3\": \"INFO\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b10d99da-3b57-4074-b866-c613dd20b13c", + "id": "198c8e52-b2cf-4962-bca9-c525e49e5f0e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81817,7 +81817,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"aliquip6_\": \"INFO\",\n \"cillumb1\": \"INFO\",\n \"nisi_d\": \"INFO\",\n \"aliqua_33\": \"INFO\",\n \"sed2f\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"temporfe3\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81834,12 +81834,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "20efbb5f-fa00-4e50-b6a3-099fd02e9dac", + "id": "da37e154-0a26-4826-a0bf-f4622bfa966c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81875,7 +81875,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"aliquip6_\": \"INFO\",\n \"cillumb1\": \"INFO\",\n \"nisi_d\": \"INFO\",\n \"aliqua_33\": \"INFO\",\n \"sed2f\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"temporfe3\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81897,7 +81897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11736c05-4a87-4adf-8f2d-b5a4c6a5f32e", + "id": "a5220414-3a04-46f9-bdb9-57d51c92a7b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81933,7 +81933,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"aliquip6_\": \"INFO\",\n \"cillumb1\": \"INFO\",\n \"nisi_d\": \"INFO\",\n \"aliqua_33\": \"INFO\",\n \"sed2f\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"temporfe3\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81950,12 +81950,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6dbc0dfc-e289-4249-9a66-ee47011aca8a", + "id": "7f6ddd19-0bb4-421d-a31a-eaf584e2b224", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81991,7 +81991,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"aliquip6_\": \"INFO\",\n \"cillumb1\": \"INFO\",\n \"nisi_d\": \"INFO\",\n \"aliqua_33\": \"INFO\",\n \"sed2f\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"temporfe3\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -82008,12 +82008,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa4f91dd-e7f7-490a-81d1-becfd6e0a5a5", + "id": "ae9dc013-8f67-4f82-bd2f-3fbe67573fd2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82049,7 +82049,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"aliquip6_\": \"INFO\",\n \"cillumb1\": \"INFO\",\n \"nisi_d\": \"INFO\",\n \"aliqua_33\": \"INFO\",\n \"sed2f\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"temporfe3\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -82071,7 +82071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a933b58c-8aa6-4bb3-9786-fddb314c631d", + "id": "7d36eccd-2bcd-4c5f-9d66-4abc148eeda8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82107,7 +82107,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"aliquip6_\": \"INFO\",\n \"cillumb1\": \"INFO\",\n \"nisi_d\": \"INFO\",\n \"aliqua_33\": \"INFO\",\n \"sed2f\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"temporfe3\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -82124,7 +82124,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -82135,7 +82135,7 @@ } }, { - "id": "7ad02feb-f4a4-41b5-a840-84f809dd5d70", + "id": "1dab592b-09dd-4252-a485-4b913a3b46f0", "name": "Retrieve all Managed Clusters.", "request": { "name": "Retrieve all Managed Clusters.", @@ -82201,7 +82201,7 @@ }, "response": [ { - "id": "e8536796-e89f-475a-8862-ac6d6c0fd5e0", + "id": "f04f4cd9-d18d-4477-a57f-64c17e4786e2", "name": "Responds with a list of ManagedCluster.", "originalRequest": { "url": { @@ -82276,12 +82276,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"clientType\": null,\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"idn\",\n \"configuration\": {\n \"ipsum_2\": \"\",\n \"amet_43d\": \"\",\n \"dolore8\": \"\"\n },\n \"keyPair\": {\n \"publicKey\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKeyCertificate\": \"\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"\",\n \"region\": \"\"\n },\n \"keystore\": \"\"\n },\n \"description\": \"\",\n \"redis\": {\n \"redisHost\": \"\",\n \"redisPort\": \"\"\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"tempor_09\": \"INFO\",\n \"est_535\": \"INFO\"\n }\n },\n \"operational\": false,\n \"status\": \"\",\n \"publicKeyCertificate\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKey\": \"\",\n \"alertKey\": \"\",\n \"clientIds\": [\n \"\",\n \"\"\n ],\n \"serviceCount\": 0,\n \"ccId\": \"0\"\n },\n {\n \"id\": \"\",\n \"clientType\": \"IIQ_HARVESTER\",\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"iai\",\n \"configuration\": {\n \"do6\": \"\",\n \"amet_88\": \"\"\n },\n \"keyPair\": {\n \"publicKey\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKeyCertificate\": \"\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"\",\n \"region\": \"\"\n },\n \"keystore\": \"\"\n },\n \"description\": \"\",\n \"redis\": {\n \"redisHost\": \"\",\n \"redisPort\": \"\"\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"Excepteurb\": \"INFO\"\n }\n },\n \"operational\": false,\n \"status\": \"\",\n \"publicKeyCertificate\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKey\": \"\",\n \"alertKey\": \"\",\n \"clientIds\": [\n \"\",\n \"\"\n ],\n \"serviceCount\": 0,\n \"ccId\": \"0\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"clientType\": \"VA\",\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"iai\",\n \"configuration\": {\n \"culpaa\": \"\",\n \"pariatured\": \"\",\n \"dolore_6_4\": \"\"\n },\n \"keyPair\": {\n \"publicKey\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKeyCertificate\": \"\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"\",\n \"region\": \"\"\n },\n \"keystore\": \"\"\n },\n \"description\": \"\",\n \"redis\": {\n \"redisHost\": \"\",\n \"redisPort\": \"\"\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"ipsumf\": \"INFO\"\n }\n },\n \"operational\": false,\n \"status\": \"\",\n \"publicKeyCertificate\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKey\": \"\",\n \"alertKey\": \"\",\n \"clientIds\": [\n \"\",\n \"\"\n ],\n \"serviceCount\": 0,\n \"ccId\": \"0\"\n },\n {\n \"id\": \"\",\n \"clientType\": \"VA\",\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"iai\",\n \"configuration\": {\n \"officia87\": \"\"\n },\n \"keyPair\": {\n \"publicKey\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKeyCertificate\": \"\"\n },\n \"attributes\": {\n \"queue\": {\n \"name\": \"\",\n \"region\": \"\"\n },\n \"keystore\": \"\"\n },\n \"description\": \"\",\n \"redis\": {\n \"redisHost\": \"\",\n \"redisPort\": \"\"\n },\n \"pinnedConfig\": false,\n \"logConfiguration\": {\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"ipsum_1a1\": \"INFO\"\n }\n },\n \"operational\": false,\n \"status\": \"\",\n \"publicKeyCertificate\": \"\",\n \"publicKeyThumbprint\": \"\",\n \"publicKey\": \"\",\n \"alertKey\": \"\",\n \"clientIds\": [\n \"\",\n \"\"\n ],\n \"serviceCount\": 0,\n \"ccId\": \"0\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd9cd502-f7d3-4c3f-9d8d-559b36fd9d55", + "id": "7d6bda39-160c-4a6d-ae69-27ba63027eab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82356,12 +82356,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15dc1709-5a02-4217-9f6e-6831cf6a9efe", + "id": "ff0054c0-e2ed-4aac-86fb-52c1e3d20c58", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82441,7 +82441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "707ec003-72d9-4feb-af1e-7b27b3cc3ded", + "id": "88163596-4a96-4b3c-844c-659b4d446e60", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82516,12 +82516,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0e940a8a-1142-45a7-9c37-114343f817ec", + "id": "f3fbae36-ecf1-4a34-8886-022bcd0527b2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82601,7 +82601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b064de7a-0ced-41ce-94c1-fe6814dbe21f", + "id": "c9c41f62-e78b-4169-aeb5-61587978eaad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82676,7 +82676,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -82693,7 +82693,7 @@ "description": "Configure and test multifactor authentication (MFA) methods", "item": [ { - "id": "4f1fbbea-5a99-4d1f-896b-7ec7c3b83ec6", + "id": "8d45225a-8104-49f3-b56a-57e703cee025", "name": "Configuration of a MFA method", "request": { "name": "Configuration of a MFA method", @@ -82735,7 +82735,7 @@ }, "response": [ { - "id": "729ba437-6467-4d8a-aa68-3dc150e0a794", + "id": "5a783e35-95f1-4fb0-80c5-0ec2b7f7bc2b", "name": "MFA configuration of a given method.", "originalRequest": { "url": { @@ -82780,7 +82780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57385aab-b8b4-47c4-b810-bb595f852465", + "id": "9f84f028-3ffe-4ec0-81ae-4c9c6fa59051", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82820,12 +82820,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "660d420e-faf9-449d-99f3-b597a06048d9", + "id": "78a77244-9b25-4968-9f51-b2efd9146aee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82870,7 +82870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06960bc4-00d3-45ac-bbf7-59ce2f58164e", + "id": "612debc1-2600-419b-92ce-91aef74452bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82910,12 +82910,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "28d6ab9a-e69d-4648-a052-bb220f9dd7c9", + "id": "e8a856d5-8ced-4af7-bf05-783d8088fc86", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82960,7 +82960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29eac599-434b-4f11-86bc-42742742663a", + "id": "4844ab80-d703-41ec-8d48-6647955ad210", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83000,7 +83000,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -83011,7 +83011,7 @@ } }, { - "id": "9fa2c8a5-e45e-4d24-9e30-90fdc40d1fd9", + "id": "a553cdfa-7603-4bc7-83f0-215c0708c6b1", "name": "Set MFA method configuration", "request": { "name": "Set MFA method configuration", @@ -83066,7 +83066,7 @@ }, "response": [ { - "id": "5601d2bd-b12e-45da-918e-5af749027616", + "id": "3c2e3551-bf3a-4177-bc64-a991ae7861ab", "name": "MFA configuration of a given method.", "originalRequest": { "url": { @@ -83124,7 +83124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9023e455-4c34-49d7-9846-17e06043e9f0", + "id": "bef13119-2055-48f2-b879-917249ef8338", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83177,12 +83177,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8bc7715d-919a-4e5c-9316-7cd3be045b7d", + "id": "77e96c07-e627-4c3c-92df-0d5fefc39946", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83240,7 +83240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29697491-73b7-41d9-a947-49028568a29b", + "id": "99baeea9-4875-43cf-80b0-6408d05d3bd5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83293,12 +83293,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d89052ed-cb17-4ffb-920c-f6de65f370bb", + "id": "1613d523-ae89-4f19-b5a1-5df1965145d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83356,7 +83356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb4072e6-e7b5-4340-8775-8ee67f26a6a7", + "id": "5c08f479-6834-42c6-a36d-41c862674751", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83409,7 +83409,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -83420,7 +83420,7 @@ } }, { - "id": "4b29e0be-b2af-41ce-8624-a0bf6a304dd3", + "id": "a170925a-93f8-4ac0-88cf-0127ac50f667", "name": "MFA method's test configuration", "request": { "name": "MFA method's test configuration", @@ -83462,7 +83462,7 @@ }, "response": [ { - "id": "28aaa8d5-2df2-43f4-99e0-69b94da0934a", + "id": "5142e487-bdee-4ad9-9cea-3d3c500bb2b6", "name": "The result of configuration test for the MFA provider.", "originalRequest": { "url": { @@ -83502,12 +83502,12 @@ "value": "application/json" } ], - "body": "{\n \"state\": \"FAILED\",\n \"error\": \"\"\n}", + "body": "{\n \"state\": \"SUCCESS\",\n \"error\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c1190e9-5eba-41db-b3cb-7447d3ef0d27", + "id": "d2551659-1589-47bc-aec9-5ae660d8ec2b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83547,12 +83547,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bbb76af1-7a19-4254-abd1-b328ac88b8d0", + "id": "0063b230-f78c-4aea-9ba5-e1f6be96df9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83597,7 +83597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c18bf48a-f376-4cef-be6b-b8b895053b76", + "id": "a3756b2d-d3af-4d21-8287-8eedae87593a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83637,12 +83637,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5eebb351-a7cc-4305-96fb-235a4aa8d934", + "id": "cedca247-f94d-4dac-ba1d-87016e9179a5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83687,7 +83687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "616434f8-3d3d-4e43-b667-05c60a3ba1a8", + "id": "f9355526-b7c6-4b5b-83c7-3ac5ab7244fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83727,7 +83727,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -83744,7 +83744,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 IdentityNow 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 IdentityNow.\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 IdentityNow, administrators must create a non-employee source and add accounts to the source.\n\nTo create a non-employee source in IdentityNow, 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 IdentityNow, 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": "d7724f0e-f1db-44db-b376-292cc23ddb95", + "id": "6fb0f41a-504b-4c06-999a-e569e36a6418", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -83775,7 +83775,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -83786,7 +83786,7 @@ }, "response": [ { - "id": "709adb98-c854-475a-aef7-178292dc5efc", + "id": "d21f2ab6-12a1-4f03-acf6-d8ae9d2eb57c", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -83820,7 +83820,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -83837,12 +83837,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"voluptate6\": \"\",\n \"ad7f6\": \"\",\n \"culpa_6_\": \"\",\n \"consectetur859\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"do_9f2\": \"\",\n \"ide6\": \"\",\n \"in7_\": \"\",\n \"officia2\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ea42912-5e01-470f-9bd2-145c53dca0fd", + "id": "420440e2-6007-4fbd-871d-5da2e6db1ded", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83876,7 +83876,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -83893,12 +83893,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16752c49-f076-4c0e-a7dd-1aeff0123d97", + "id": "ec1df389-148f-4fef-aa40-12c5b7d60273", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83932,7 +83932,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -83954,7 +83954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6cb5d6a-ff78-40e1-b982-09ae462c8ab9", + "id": "99d3429f-26a1-4f38-bba3-d39eb86f6c0d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83988,7 +83988,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -84005,12 +84005,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e6fe3ce0-eb01-4200-8dd9-2ec1c3597599", + "id": "e806c3ac-cfb7-487e-af80-30ee7d2c335e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84044,7 +84044,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -84066,7 +84066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b0ab5f9-9fde-41e0-8fd6-b62655c2ea31", + "id": "f8552759-8c8a-44dc-9dc7-c8fb45d27d02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84100,7 +84100,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -84117,7 +84117,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -84128,7 +84128,7 @@ } }, { - "id": "8900b010-3cbb-460c-89d1-d3fd82183437", + "id": "2eb22aaf-c345-42bb-a713-81f93ecfd46c", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -84203,7 +84203,7 @@ }, "response": [ { - "id": "cf5c641d-0d18-45b7-a403-4ace47a4dac3", + "id": "41fb0f10-6233-44e2-8992-9fb7a0d526d3", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -84287,12 +84287,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"proident_9\": \"\",\n \"Lorem8\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"officia0\": \"\",\n \"adipisicingb\": \"\",\n \"amet_a0\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"consequat4\": \"\",\n \"aliqua_5\": \"\",\n \"minim_61\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"eiusmod_0\": \"\",\n \"officia_\": \"\",\n \"laborume\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c03a64c-2915-467f-91ac-0e26998a1bc5", + "id": "ea688a28-bc85-495b-a750-2653fb6e8c88", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84376,12 +84376,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8bf9479e-bfb0-4058-a952-49106e85320c", + "id": "16d45f64-2bfc-4b0b-891b-14544fd71c8a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84470,7 +84470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8eb35efa-5911-4f2e-bf38-bbb0e9e7cc9c", + "id": "77aef28f-792a-4e94-8f5f-e1b80132f9c1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84554,12 +84554,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "33bae355-0662-472b-8f92-4d72848927c5", + "id": "de827757-9bd7-4aae-ab09-618d02b06240", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84648,7 +84648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1318317d-b399-487c-bc56-7c4b4fe7156a", + "id": "613721fe-e3ad-4392-b694-05b1fa99715a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84732,7 +84732,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -84743,7 +84743,7 @@ } }, { - "id": "de10755f-c5bc-422d-ac4a-548b151654ed", + "id": "7d22da80-801f-4627-a8e0-5a141c286c4f", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -84784,7 +84784,7 @@ }, "response": [ { - "id": "d37be70f-0f21-485b-9bc0-f8633e20962b", + "id": "0926e52f-c011-417b-8cee-85e145bb78fb", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -84823,12 +84823,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"voluptate6\": \"\",\n \"ad7f6\": \"\",\n \"culpa_6_\": \"\",\n \"consectetur859\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"do_9f2\": \"\",\n \"ide6\": \"\",\n \"in7_\": \"\",\n \"officia2\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92ec2996-fe4c-44f3-8960-fa85d842d80e", + "id": "8ce2feb3-91c9-478c-8fb8-004cec3f12f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84867,12 +84867,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4044b31b-5780-4dfa-916c-ff91fa065c18", + "id": "2e03fa6b-b764-41e3-b2af-64e93cdc167c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84916,7 +84916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "281966aa-9908-4aa5-9f66-92889d8eeaad", + "id": "2a4f44d6-8bb4-4472-b884-453d2fb2fc8b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84955,12 +84955,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff6d1867-652f-4830-83e4-4a38e193a772", + "id": "436c813f-5af3-4c38-8ac8-30ce117ff3f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85004,7 +85004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61012755-c494-4d8c-b99a-bbd51bd71927", + "id": "e227db3c-b7b1-43a8-90a4-4e38074e5c1f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85043,7 +85043,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -85054,7 +85054,7 @@ } }, { - "id": "dc30bcab-9853-4509-8459-fae4d172c076", + "id": "f1ef63e0-7353-446d-9317-5bad0a14e8e6", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -85097,7 +85097,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -85108,7 +85108,7 @@ }, "response": [ { - "id": "61579e8d-6a0c-480f-b09e-032a61a4395d", + "id": "ffcc7ca5-2453-4035-a193-de83467d96f8", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -85143,7 +85143,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -85160,12 +85160,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"voluptate6\": \"\",\n \"ad7f6\": \"\",\n \"culpa_6_\": \"\",\n \"consectetur859\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"do_9f2\": \"\",\n \"ide6\": \"\",\n \"in7_\": \"\",\n \"officia2\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "157cd044-01ec-4776-9b47-92a50eba640d", + "id": "83272ce5-61a9-4706-a620-b9cd526cf8fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85200,7 +85200,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -85217,12 +85217,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dae8fbab-69b4-4eb3-b014-62ed230e613f", + "id": "50204dba-ee3d-4107-87f2-775049f7c746", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85257,7 +85257,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -85279,7 +85279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d36b7bbd-3ce8-44ed-a236-8e5a2b8c4842", + "id": "11c65426-37ce-4acf-b96a-2349f0234e6c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85314,7 +85314,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -85331,12 +85331,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3c11fd3-cb4d-4b79-8c71-36af1ee7f750", + "id": "560c2c9a-4608-4d46-8ba9-e07d8dd8a7f8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85371,7 +85371,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -85388,12 +85388,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4db08f7c-facf-4756-a7e1-17fa7d031534", + "id": "223652fa-c2ad-470e-9b03-361d31244c37", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85428,7 +85428,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -85450,7 +85450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a97c2651-e71c-440e-a756-40aa5f58e0ab", + "id": "2be8410f-779c-4425-b98c-273950877ed5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85485,7 +85485,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -85502,7 +85502,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -85513,7 +85513,7 @@ } }, { - "id": "37144c95-2f9c-4c51-9c42-9d5d8f018eef", + "id": "3c0eaf6e-ca24-4907-89e4-0d01cbbd87e7", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -85556,7 +85556,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85567,7 +85567,7 @@ }, "response": [ { - "id": "0c7b2f23-5d92-42b9-9d04-8f7632c27bcf", + "id": "328a0e79-ac9c-4ef7-b87d-3079e810e00f", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -85602,7 +85602,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85619,12 +85619,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"voluptate6\": \"\",\n \"ad7f6\": \"\",\n \"culpa_6_\": \"\",\n \"consectetur859\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"do_9f2\": \"\",\n \"ide6\": \"\",\n \"in7_\": \"\",\n \"officia2\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e68e6080-dc45-44c8-8c46-896a746efb71", + "id": "e8dd35ba-9951-4f14-957d-f847b0e9de76", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85659,7 +85659,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85676,12 +85676,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f68730e-d9eb-424f-b491-5e0a80dbc4be", + "id": "c7798c4e-fec1-4bc2-b80e-80aba713b444", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85716,7 +85716,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85738,7 +85738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f013deb4-1ddc-4306-a7ae-12b61acea54f", + "id": "989b13b9-04b7-495b-a528-73f89aa5d554", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85773,7 +85773,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85790,12 +85790,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "646e9eed-e494-442b-8c85-a91505484772", + "id": "bfbc9ef8-c4bc-4883-b76c-b40630302d66", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85830,7 +85830,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85847,12 +85847,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9fd873fc-5a23-4f50-a198-3bc56bbaf189", + "id": "34a7e45c-971b-47fe-995c-2c4bfdd4697e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85887,7 +85887,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85909,7 +85909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c960dc1e-4179-47a9-be30-1f5cfa475838", + "id": "90d37f66-496d-445a-aca8-0ebd1d926003", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85944,7 +85944,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85961,7 +85961,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -85972,7 +85972,7 @@ } }, { - "id": "ceb24d19-432a-4e5e-92f4-453efd4cbacc", + "id": "3ec7b674-73b2-49b1-883f-08ae75e90468", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -86013,7 +86013,7 @@ }, "response": [ { - "id": "e4234e6b-ec1d-414d-9c82-dd0a78f8e8be", + "id": "47ac6228-2efe-42cd-b768-89878f438317", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -86047,7 +86047,7 @@ "_postman_previewlanguage": "text" }, { - "id": "dc813d66-8414-4727-a214-29541c98735a", + "id": "c4000d7b-baa2-4ba6-8d5e-38e69298b3cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86086,12 +86086,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "66e297bf-57f1-4d9d-a1c6-e2126c396dab", + "id": "eb55e73a-91fb-4283-ad2e-807ba140793c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86135,7 +86135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0ac3952-9509-4f05-9c2b-f962cb00eefb", + "id": "ec50a01f-f1d3-4829-be3e-c133ca6713e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86174,12 +86174,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1ec08d8-47e8-49c2-a621-b9de082c3536", + "id": "7a35a927-f43c-4c9f-8538-6251b00bb221", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86223,7 +86223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a811179-e2f9-4c36-b8c1-d71bc8607058", + "id": "f316f665-3ba5-433c-b5f6-368ef3d74840", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86262,7 +86262,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -86273,7 +86273,7 @@ } }, { - "id": "46c56e49-9e50-4421-b50d-702d90c15c20", + "id": "ba6fe05a-ff71-4405-a5e4-8a5608c03f91", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -86316,7 +86316,7 @@ }, "response": [ { - "id": "6ca97cc3-ff9d-4df3-a3c2-5e21ebbf8352", + "id": "cb8d3ddc-e149-4717-82b2-220be0033626", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -86363,7 +86363,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f657c49a-d374-48db-ad0d-1c46efed3407", + "id": "c49f4f7b-021e-4494-b569-b311dde0b894", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86415,12 +86415,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f6df0e6-3e09-4d1e-939f-f10cec5bd14d", + "id": "4006d9d4-83f9-4f2d-b3df-06551d6b94d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86477,7 +86477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b9f6675-208b-4e8d-b833-e1562b29f4bf", + "id": "2c41eb26-7eab-4861-973f-dd2ddd98fb10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86529,12 +86529,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea822dcd-2a0b-47a2-9b59-275ffa79b67c", + "id": "231a0d35-2865-43a6-8b65-fb15183aa64c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86591,7 +86591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "672e04b9-b58e-429b-9146-0ef072c37eb5", + "id": "8776516f-b42f-4379-91a6-3b90dc179307", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86643,7 +86643,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -86654,7 +86654,7 @@ } }, { - "id": "0fd27e93-2136-4c4d-b1be-2c6e42dcd549", + "id": "cda99f64-6947-4609-a6e7-def1b7368742", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -86685,7 +86685,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86696,7 +86696,7 @@ }, "response": [ { - "id": "20299293-8728-4f8a-86fd-a3ed21b38764", + "id": "adf35861-73e7-4663-951a-220cb49b0239", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -86730,7 +86730,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86747,12 +86747,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"quis_2c\": \"\",\n \"sed_2\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"TAG\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"RULE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"elit_27\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"TAG\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"RULE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed3813a8-9b04-42dd-b806-be66e2cd4ea9", + "id": "e429a6d8-32b9-48ea-bb62-1ad491b5469b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86786,7 +86786,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86803,12 +86803,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d2d1906e-774b-4fc0-820d-b1e0e1a3ff94", + "id": "e67a05f4-fc63-41e1-b636-a32a436ed68e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86842,7 +86842,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86864,7 +86864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f570351-d075-4302-8b21-271f592be01c", + "id": "01d87c04-ac11-4885-a884-c379571ec09e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86898,7 +86898,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86915,12 +86915,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dbaab9aa-a69a-4b20-ad8e-7e9077140730", + "id": "1dfd6570-8bc9-4f2b-909e-b8ce1143494a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86954,7 +86954,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86976,7 +86976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3290afe1-4e85-44ce-a345-f00ceaf97b1b", + "id": "e36756c2-b33a-4faa-9f36-d7cbe1f50cb5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87010,7 +87010,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"utc\": \"\",\n \"eu_799\": \"\",\n \"laborumcfa\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"ipsum_c3\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -87027,7 +87027,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -87038,7 +87038,7 @@ } }, { - "id": "07fd9fdc-70c4-4f62-a36c-6b8674ebf3b9", + "id": "8b6f82f1-ebb3-47cf-a256-19a860eb2aac", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -87122,7 +87122,7 @@ }, "response": [ { - "id": "d55c11bd-ec22-45af-a5f1-51c6c5307216", + "id": "fb39d4b7-5ac6-4e48-941c-8ddf74a5c457", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -87215,12 +87215,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"in_7\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"NOT_READY\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"anim_852\": \"\",\n \"in_8d0\": \"\",\n \"add86\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"dolorfb\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"sedde\": \"\",\n \"laborum_c\": \"\",\n \"sitc\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "02a9c20b-21c6-4854-82e9-1d7e6d66ac8f", + "id": "09aa6500-ae8e-47ba-9ca4-f34ad06102b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87313,12 +87313,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3550aef5-300a-4e15-8149-370a5825d3b2", + "id": "578edd05-e7d1-4770-be8b-d6894f2d9af7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87416,7 +87416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b729763-b57d-4e18-8f14-b18c50569dba", + "id": "4cc37612-af59-45eb-8eae-9e93441df7f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87509,12 +87509,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7365105c-cf0b-4095-8c93-3dd2c4feb019", + "id": "f84c98d0-d790-477d-a831-5d0e9ad9c4be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87612,7 +87612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48da9d7d-a6f9-409a-9d44-66178c6a0d25", + "id": "c85be119-1fe7-451c-bde5-9b0762b309e4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87705,7 +87705,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -87716,7 +87716,7 @@ } }, { - "id": "49b00866-f519-43da-a248-b8fbcb26376d", + "id": "2632e08d-872b-4a96-859d-05adcd9533c0", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -87757,7 +87757,7 @@ }, "response": [ { - "id": "387d68dc-7fe1-405e-af07-c4962f9eb449", + "id": "84a4db3c-9c07-48a1-96f6-0416da19f3ba", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -87796,12 +87796,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"quis_2c\": \"\",\n \"sed_2\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"TAG\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"RULE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\"\n },\n \"data\": {\n \"elit_27\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"TAG\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"RULE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "821f1d45-1c04-4fbb-8eaf-0a698d9e788c", + "id": "e137c1cd-b396-4f81-9073-5c6a9ba470a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87840,12 +87840,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc4ddce4-950d-46a1-a057-bfd75089a4ae", + "id": "f6991453-aa00-4a38-b84f-90198885866a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87889,7 +87889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efec96e7-f560-4b15-8836-f6e7e7ccd9c3", + "id": "42d8827a-b7ac-4afa-bf66-db11b2b71aab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87928,12 +87928,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "efe93d0a-1551-4c84-949a-872d9763d467", + "id": "b54ccda3-2c3e-4f11-8713-04cebf0d0b26", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87972,12 +87972,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2830fad2-47e2-46b8-b95c-c3112e026acf", + "id": "49144f57-baf4-42a3-840b-e7dd8956f0e7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88021,7 +88021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "530370b6-b830-4583-8c1f-7d54e2b483b0", + "id": "ff1fc069-e2a4-442f-8f25-824b13ee8577", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88060,7 +88060,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -88071,7 +88071,7 @@ } }, { - "id": "b5a1d433-7e1b-48aa-8982-5f7d314d7b7d", + "id": "8af59b3c-082c-4005-bfbc-f256efda022d", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -88112,7 +88112,7 @@ }, "response": [ { - "id": "88f20d4c-ab0f-431f-abdb-109f037f30a0", + "id": "6a80d81f-6755-41d5-8461-e9d1acda00f6", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -88146,7 +88146,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e1577cea-b35c-4869-a71e-8f025928734f", + "id": "117a7ea4-d2dc-4a62-a3f6-f73f9332de28", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88185,12 +88185,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a7ad4204-406b-42d1-be14-4d02cbb3178a", + "id": "2233c2ca-8214-478b-be3f-7832196f068e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88234,7 +88234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e8980ab-fc13-4cba-8a03-0c0bf3b3b6f7", + "id": "ce14adb8-d5ed-4c9b-8ae2-bff5decad179", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88273,12 +88273,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9489ec2b-f942-42b6-a26f-92fdcd278388", + "id": "ef306bf1-aa72-42c2-8650-0fb7112d456d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88317,12 +88317,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "396f220e-3e4c-4865-8682-bab969e946ce", + "id": "8d7bbfc9-30ef-4c53-a039-8200b9d028db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88366,7 +88366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eca85b2f-917a-449b-bb2d-df95b99e12b3", + "id": "96d49228-283f-4381-b784-d05b435888be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88405,7 +88405,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -88416,7 +88416,7 @@ } }, { - "id": "4e24027f-f413-4b28-9045-f85601a77e18", + "id": "4b41d909-2642-410a-85ac-b64f33092fd5", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -88458,7 +88458,7 @@ }, "response": [ { - "id": "a1bce826-f350-48eb-8795-4ca556f052c1", + "id": "ed826f3e-1685-4f20-ac89-18b79a7fcf3a", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -88503,7 +88503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "716a86b4-0fe9-49a1-b3f9-ae4fbf2c9013", + "id": "96fef9cf-870e-42b1-ad1c-9576e6ae47ae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88543,12 +88543,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b9f2457-40db-4116-aed1-6a4535b306bf", + "id": "d6adbad8-feaf-4a86-9219-7e9b37c676f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88593,7 +88593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2ec93a7-8c5a-4dc7-b303-a339e389ccd2", + "id": "4a2c7a4a-f524-48ce-a70f-d5288cf0d4f5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88633,12 +88633,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "848d562d-dbc0-4140-960c-ce7de06f8c66", + "id": "2f441f70-3a68-4d18-b8e7-b9f8d14550f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88683,7 +88683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f01ba52-d424-404a-8051-06026b19311c", + "id": "fcd645e8-e0b0-417a-a2c4-af07e8b240a0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88723,7 +88723,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -88734,7 +88734,7 @@ } }, { - "id": "24cf6cbe-fefa-444d-bbfd-e168ecedb2a5", + "id": "ab4dafd9-1143-4009-96bc-0e015789be1a", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -88776,7 +88776,7 @@ }, "response": [ { - "id": "3c5f8789-64de-4861-b8bc-b3c58b34d261", + "id": "63a02b66-5dd3-4707-a8a1-768c7acba4a1", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -88827,12 +88827,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\"\n },\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\"\n },\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\",\n \"cloudExternalId\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\"\n },\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\",\n \"cloudExternalId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2335df31-f642-4881-b218-1cdeb972b0ab", + "id": "857d899e-f29c-4992-ad34-534043e5ef9d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88883,12 +88883,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed956502-6e28-47c0-bf34-526542daee0f", + "id": "430e9593-ee76-4f46-9d79-42889793ab63", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88944,7 +88944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b295736a-d733-4efe-a4ce-1af7f4312e6e", + "id": "e1c61dee-65b4-4273-a193-e926c7b1940a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88995,12 +88995,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f3f640b-fc9e-4b57-9912-32bdb47ccd23", + "id": "b9383c21-2549-4171-ac41-bfc3e13fc55b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89056,7 +89056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b41a7464-4cea-427e-941a-b16ce74090e0", + "id": "8a4b166f-32a3-4ae3-b5a5-ad4550928cbf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89107,7 +89107,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -89118,7 +89118,7 @@ } }, { - "id": "af7c73bb-331a-4342-a5de-3ee26a910815", + "id": "503800d8-5295-40db-abad-6a7de85d90a8", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -89202,7 +89202,7 @@ }, "response": [ { - "id": "d8cdd208-0f57-47c7-b0ca-7d9ee9a6d5a4", + "id": "635348c9-e6a5-4712-b9de-c62d991e5ec0", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -89295,12 +89295,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\"\n },\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"RULE\",\n \"id\": \"\"\n },\n {\n \"type\": \"TAG\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n },\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n },\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea7d110b-ce00-4887-95f8-658a1446dc3e", + "id": "116ceb7c-21f4-4b84-85ca-0a2b880d8a05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89393,12 +89393,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ba905dd5-f1c4-4523-ad44-6fad413db566", + "id": "e1947b90-3d5a-4112-a52a-cdc2496cc894", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89496,7 +89496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96b7bc5f-a33b-43de-af6e-8f63692f54bf", + "id": "857a2636-aef7-463b-9398-66a12eaaaafc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89589,12 +89589,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4dd69894-ed30-48db-ac9e-d2fc1ab5a3d3", + "id": "82fcea13-2a88-4010-b058-59de69661625", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89692,7 +89692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e940c7a-49c2-4d09-b381-93b1cb06e027", + "id": "dc31d32f-603f-491c-b667-ea1b8a884e3b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89785,7 +89785,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -89796,7 +89796,7 @@ } }, { - "id": "6d7bfc1f-e5fe-4451-a333-86aa7a639803", + "id": "a77a6198-4ea1-4dab-9f0a-4f913617862b", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -89837,7 +89837,7 @@ }, "response": [ { - "id": "629d94ec-705a-4b84-ba2b-3b43ee84658f", + "id": "51f14796-2248-41db-8190-e25422de2086", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -89876,12 +89876,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\"\n },\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\"\n },\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97d0cac1-f467-44ac-9570-cba6371f5e75", + "id": "3b162401-ca95-44d6-8890-f58b95436d2f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89920,12 +89920,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c053b081-2066-4c75-99d8-7f67090529c1", + "id": "22e4cfc8-c0ae-4083-a4b1-ef10d047b598", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89969,7 +89969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e1d71ab-d51c-4796-87f4-814475f36f8e", + "id": "70d1881e-36ba-4833-8a17-b2f89e07296d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90008,12 +90008,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "72a53c2e-ff8c-467f-a609-7b7473dbf612", + "id": "0c8ab38a-d008-4a12-ba39-98b69468309d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90057,7 +90057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "867150c1-8aa0-4dde-944a-b83f7f5f19e5", + "id": "509dd5c7-8b61-4730-8f70-fc17845edf55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90096,7 +90096,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -90107,7 +90107,7 @@ } }, { - "id": "d164e922-e032-4061-a280-f1bfe3600e81", + "id": "5bc2e331-46e7-4193-8edc-97eafe7091aa", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -90150,7 +90150,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -90161,7 +90161,7 @@ }, "response": [ { - "id": "5b94b77c-66c1-4c86-8999-05a7b946afa4", + "id": "5f970860-c5e1-4631-84d6-ed540dd54636", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -90196,7 +90196,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -90213,12 +90213,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\"\n },\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\"\n },\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ab80d5b-dc4c-47fd-846a-0332e7ac6b61", + "id": "b105673d-ab75-4eba-b20e-0f9a3eac86b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90253,7 +90253,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -90270,12 +90270,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "50ac64ed-a53b-486a-bec5-df42fc3c295a", + "id": "68b2630a-c11b-42ea-833e-34099c0d3dd2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90310,7 +90310,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -90332,7 +90332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8821d97-6d64-448b-8e32-9734fc4f05cd", + "id": "73f05b09-7ee5-4582-bbcd-ff6eb548bf05", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90367,7 +90367,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -90384,12 +90384,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "331a685a-bfd8-438b-a8bc-6b9375225b7d", + "id": "bd99d050-20af-48eb-9c62-7ea4aa4707b1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90424,7 +90424,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -90446,7 +90446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07e0588b-2666-42c5-8986-89669941f2d8", + "id": "246025c3-ced7-459a-8c0f-c74a03fdd8b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90481,7 +90481,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -90498,7 +90498,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -90509,7 +90509,7 @@ } }, { - "id": "fb669ee9-d37d-431f-8c70-2fdd8dd83e6a", + "id": "e1e4d55b-4194-4f87-bd05-339f34afc35d", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -90550,7 +90550,7 @@ }, "response": [ { - "id": "fd3e5913-c756-4635-a670-9881f34edec3", + "id": "fbfa5045-2286-4894-9960-c23df9c8dc80", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -90584,7 +90584,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2303979b-74aa-4eca-b4c5-9ca82d891a73", + "id": "1a4d38a3-0802-45d7-88df-8d0840d40b62", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90623,12 +90623,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3fd8335f-e0f4-4d03-aebe-7bcd37f615bc", + "id": "c6b63e7e-639f-4345-a73b-7204d068b9fa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90672,7 +90672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e453f6f-bdbe-4db0-b3cc-04bf9749b568", + "id": "d482eec1-5a2c-46ee-abb7-12b14238a6b8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90711,12 +90711,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4f6ac4c-fbac-4d62-912f-7849653d9550", + "id": "c5ff7a5a-9da2-477c-a00e-d72e998618cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90760,7 +90760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d951dd88-d2a1-4c77-bc7a-6efe4bc8f3de", + "id": "100cd19f-c139-4b6c-87a0-a563fd27f317", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90799,7 +90799,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -90810,7 +90810,7 @@ } }, { - "id": "3e37f588-16f2-43a0-8b70-0bf8a7b77b3e", + "id": "1cfde637-9a57-42bf-a6b0-f160dfd1e178", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -90853,7 +90853,7 @@ }, "response": [ { - "id": "861d4e1e-16b5-4e6f-891b-af658b0f06ce", + "id": "df3d283d-2119-40a8-99c2-248a1ec816f0", "name": "Exported CSV", "originalRequest": { "url": { @@ -90899,7 +90899,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5a2b33b1-d485-4f07-837b-eed2ddc5bf64", + "id": "96d7855e-2eee-4079-b30d-6ca63c259c4d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90940,12 +90940,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5dc1a046-4e0d-45f6-83c5-6d04c44d0cba", + "id": "cc697bd0-ad05-4f93-ba88-47661df3baf9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90991,7 +90991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bff3d3e-6fa6-4192-85cf-0d5a0f19b7aa", + "id": "ef1b8dc9-076c-4f13-b914-921fcf932fa3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91032,12 +91032,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "42251ee5-607e-494e-a9de-c4b09312bc5b", + "id": "8a07dc42-dd7b-4fd8-b475-39a09adfdf1e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91078,12 +91078,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "871cb63e-c853-45ae-bfa5-710f7bba3aec", + "id": "8fc49678-c1da-4314-b86c-100e89846a8e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91129,7 +91129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c26d454-0797-4990-91c2-9c7e584f75b3", + "id": "272eb703-110b-4605-9716-4b27352b8363", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91170,7 +91170,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -91181,7 +91181,7 @@ } }, { - "id": "f7e7d969-6fd1-46c7-b74a-0f41b7d2b876", + "id": "c20ee91c-81db-4e65-aa45-83327c2cd444", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -91240,7 +91240,7 @@ }, "response": [ { - "id": "ed696653-05da-40e2-b8e5-3d972a240e94", + "id": "17d2429c-3416-4dcb-a988-98b32f05a924", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -91297,12 +91297,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"status\": \"PENDING\"\n}", + "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"status\": \"COMPLETED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ac23d03a-c9a0-498e-89c7-a8956ed6a11c", + "id": "ddb9ba96-e374-4437-bca3-91d09bbec861", "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": { @@ -91359,12 +91359,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c56f99e-4a99-41c1-af22-8847261f76db", + "id": "136b3eb2-5923-4976-ae79-e31607ef705c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91426,7 +91426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5412c714-cb43-439c-8b78-031f8fedab85", + "id": "823523fa-7631-4103-8425-0d2589124eda", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91483,12 +91483,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eb841613-f802-4509-bc0e-673bf2754280", + "id": "aab80965-e451-4333-b9c8-9bffbfc76cb3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91545,12 +91545,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "73dfcd56-ade8-4738-81ec-197d26a8b0da", + "id": "941574df-6e9d-46b8-90c0-0b9572e8f466", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91612,7 +91612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63973c9d-c3a8-4720-a7b4-e4e66e48ddcc", + "id": "5e11c613-8198-4fe3-9c46-17d05105f614", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91669,7 +91669,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -91680,7 +91680,7 @@ } }, { - "id": "0c43d8c1-9081-4124-a791-3169b7e87ef8", + "id": "876fac45-883a-4c10-bf61-036351b8a51c", "name": "Bulk upload status on source", "request": { "name": "Bulk upload status on source", @@ -91723,7 +91723,7 @@ }, "response": [ { - "id": "20fd582d-c5b6-4cc0-9159-255f7a619490", + "id": "c470b467-18d3-484c-9670-b4b0b61332f9", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -91764,12 +91764,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"COMPLETED\"\n}", + "body": "{\n \"status\": \"ERROR\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cbf05ebb-4e27-4632-8aaa-b7c33c5e3aea", + "id": "bb682afb-3e47-4e17-9b8d-480a0d161c7c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91810,12 +91810,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3f551d1c-2d31-457a-80c7-3fa3e1ecdff4", + "id": "22293de8-d449-4824-9275-a39d5a1344ed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91861,7 +91861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "489210e0-2cec-41ce-a727-246a75a5d05a", + "id": "12ae0c43-8e5c-4355-b738-1d5f2128a4d0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91902,12 +91902,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "60edbd67-b87f-41f9-a82f-51979df8a99a", + "id": "4bab4f8e-76c2-41b2-830b-cb0a08fb7622", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91953,7 +91953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "570f786c-3721-48a2-994d-6054d1d5ea35", + "id": "fcc38834-10f5-49b1-9843-ad3018b7f325", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91994,7 +91994,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -92005,7 +92005,7 @@ } }, { - "id": "71e2065d-6c0b-4eb7-a17a-4f6907b776c7", + "id": "be047733-1944-437b-bf05-c0f021143e98", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -92048,7 +92048,7 @@ }, "response": [ { - "id": "023f0507-9751-4808-8c3b-ac0cacffa5db", + "id": "ab12540a-2766-4042-a96e-6e92232e3f50", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -92094,7 +92094,7 @@ "_postman_previewlanguage": "text" }, { - "id": "72211dc8-925a-4492-94cd-dcefcce031c2", + "id": "58ed03bc-e44a-4dbb-b65d-e75f4bfc71c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92135,12 +92135,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04a453c6-0513-4eea-a639-1c875c5c59f3", + "id": "e71a3942-0406-4209-856c-8a46ef716722", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92186,7 +92186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad47512e-f1fd-46e5-9527-3635c81ab126", + "id": "2f6386f1-23f9-485a-932d-601bb6391b78", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92227,12 +92227,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c6c51b1c-e589-4c03-b8b2-c4bff2da3e5b", + "id": "1b1d7d73-fdeb-4506-a9fa-e13d413e80d8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92273,12 +92273,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf0f3b83-64e1-4aa1-9ae5-67941ca537fb", + "id": "7cff138c-5dcc-4e8b-ae58-1301d1f97a7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92324,7 +92324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "474c85df-0838-420e-a650-aa1f1b61817b", + "id": "63da8539-83eb-4932-8568-4e9a5ed906ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92365,7 +92365,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -92376,7 +92376,7 @@ } }, { - "id": "69ef4b2c-57a3-4162-8671-3b16a8eeb897", + "id": "002ef091-f313-429b-8dcd-24c599949085", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -92460,7 +92460,7 @@ }, "response": [ { - "id": "eab7320c-fca7-46c3-a29d-3c6147cea6f8", + "id": "9a87e1e0-3b08-4905-b857-36725ba06570", "name": "List of approval items.", "originalRequest": { "url": { @@ -92553,12 +92553,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\"\n }\n }\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\"\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\"\n }\n }\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"RULE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e30e8870-08e3-4931-9469-93f2992123db", + "id": "708fe9a9-7c94-4538-9eb0-7818f6ce433e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92651,12 +92651,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74d151fe-d070-409f-9174-084e4393d8c9", + "id": "562f7ae1-4355-4a69-90a7-74bc5e30be7e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92754,7 +92754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ff1ce23-c203-4d5f-a93f-5801a58d3036", + "id": "89cac100-ba6b-425c-8bfe-191084f5acf1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92847,12 +92847,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dde49ed5-4a00-4159-ab44-600cfe2b86d4", + "id": "211dc119-890e-42e8-9d75-581854841318", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92950,7 +92950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f92a50-11fd-49f2-a4bd-de281b5386fe", + "id": "f49740b0-501e-403c-b01d-b778f392740a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93043,7 +93043,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -93054,7 +93054,7 @@ } }, { - "id": "b8ac5a52-f211-4bc4-b816-f2af6a2cc63e", + "id": "1d7d834d-2a22-4baf-bba9-43196c724440", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -93105,7 +93105,7 @@ }, "response": [ { - "id": "a6e11201-890d-4521-8e7a-05fee713c820", + "id": "ede9694b-ce85-4f01-b8c2-f243ba9127d6", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -93154,12 +93154,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"schemaAttributes\": [\n {\n \"type\": \"IDENTITY\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n },\n {\n \"type\": \"DATE\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n }\n ]\n },\n \"data\": {\n \"quibe\": \"\",\n \"qui_24\": \"\"\n },\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n}", + "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"nonEmployeeSource\": {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"schemaAttributes\": [\n {\n \"type\": \"DATE\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n }\n ]\n },\n \"data\": {\n \"exercitation_e1\": \"\"\n },\n \"approvalStatus\": \"CANCELLED\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "53c82bbb-9df3-4daa-b757-0894a3d7f08b", + "id": "20f58f15-d783-4627-8436-367811674a65", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93208,12 +93208,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "766829f8-1571-4e7c-a74a-9d13719dedca", + "id": "da2c0078-b5f8-4a6e-9854-82f8e9cda488", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93267,7 +93267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05776150-3c13-4db7-8f7d-9c158150542a", + "id": "0c6824cf-d7c2-416f-a870-2e23ec79b278", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93316,12 +93316,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "61c6c9dc-5460-4bc0-a552-f84d640c276a", + "id": "d94efa86-5647-4976-9fd7-5756f7e162da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93375,7 +93375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c2246c6-ff33-494c-b13f-2ce38081270a", + "id": "d2c5321d-0f74-42ee-bdea-d2a0eb24b330", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93424,7 +93424,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -93435,7 +93435,7 @@ } }, { - "id": "bd6c3d24-2edf-41d8-b49c-b89c957659be", + "id": "ab4395b6-b740-4e7b-9d34-b559d26efd54", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -93490,7 +93490,7 @@ }, "response": [ { - "id": "ef97e505-df5d-4f8d-bde5-ae4d2f087588", + "id": "75923cc4-7b55-4936-a285-21382f33d1a4", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -93543,12 +93543,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ROLE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"ROLE\",\n \"id\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6dba1b66-ff9c-4a6d-b961-616b26ea4455", + "id": "7ad048e8-3752-4189-a23b-1393a38bcc2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93601,12 +93601,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ba196a27-3441-4875-89a9-180b84612ea9", + "id": "ee6069d4-b030-4813-8017-22a2d1dc5862", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93664,7 +93664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b289d04-c041-47fe-972d-1d0e6185e5bf", + "id": "38187f33-3865-43f4-bc9c-6225703b3555", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93717,12 +93717,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "09025a50-fec7-431d-9756-3c6dcb6d8984", + "id": "e3309975-da75-41ef-8a6d-3e103f6568a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93780,7 +93780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d14845c-680d-47f6-9cef-eb6a2b01373e", + "id": "2a368ae0-a528-434e-8baa-459cf7b4d85d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93833,7 +93833,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -93844,7 +93844,7 @@ } }, { - "id": "f378b9b8-84fd-4270-becc-d4c7750dcab2", + "id": "c54f96a7-1d04-4b33-9905-5bcb5b66cd2b", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -93899,7 +93899,7 @@ }, "response": [ { - "id": "5e6e7600-9b43-4fed-8c28-01c79e7a99ca", + "id": "6af86890-e6e7-447d-a97e-c4ae5d8c7a96", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -93952,12 +93952,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ROLE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"ROLE\",\n \"id\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb50878c-2952-4e15-bf6d-b8de7337d9df", + "id": "7c708d6d-e181-4ef0-ac11-a1835b8c29d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94010,12 +94010,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e9507ae-c203-4d2b-8d67-62ecdd3be2ea", + "id": "a1fb9803-a90c-4772-a061-ea0160c25bf3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94073,7 +94073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0de75411-3c33-4f6c-a875-9aba5eed2177", + "id": "fa8dbc18-9c5b-447e-abb3-711680cac559", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94126,12 +94126,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10a2d181-839b-45c0-adaf-2ef7e62db77a", + "id": "9c228824-790a-4dcf-b2c6-2d5ed1fcf517", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94189,7 +94189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "502083b4-54cf-44aa-ab70-5a4b9f96ea04", + "id": "b8fc6bea-5045-4fae-ae93-49ee8291b425", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94242,7 +94242,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -94253,7 +94253,7 @@ } }, { - "id": "a8eb1346-d408-40ea-9e7f-7179b48c060e", + "id": "80afdb79-0989-4ad4-ac2e-779d919ea023", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -94295,7 +94295,7 @@ }, "response": [ { - "id": "c4891f7b-d671-4c61-9590-5e941b257e26", + "id": "5f8edad6-9f0c-420f-b8cd-4dc75e03cdf7", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -94340,7 +94340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b52cfab-430e-4b9c-9ec1-87b51698c40b", + "id": "8f9fe79b-c3a9-4266-8916-191ae8f1e24c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94380,12 +94380,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "66c82475-2a42-4a21-9550-2034d722e248", + "id": "63d44e37-07a9-4425-96d1-a94e7fb4a08e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94430,7 +94430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71b6eb5d-7014-4a0c-a5a6-52c1ab48aaaa", + "id": "90cf5fad-c40a-4644-a84c-d317a2c1905f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94470,12 +94470,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0158f7a7-6abd-4d6d-bd20-3d30f4728251", + "id": "b359b278-6dd5-4234-be8d-08c45cb8fa48", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94520,7 +94520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b6514d8-4d17-4b0f-ac9b-c8d8d61dcfc5", + "id": "f11c768b-48a1-48f0-8c66-914ce0dd5466", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94560,7 +94560,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -94571,7 +94571,7 @@ } }, { - "id": "0f9f539a-533c-4c2d-9a40-a77ce9b05404", + "id": "9d9b9d6a-7fae-41ae-b633-6ce0aa990383", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -94613,7 +94613,7 @@ }, "response": [ { - "id": "4605736e-e568-4879-8c45-77d56fa03bc9", + "id": "557ab226-f9f0-4121-aee3-fe424acd4ec6", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -94653,12 +94653,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"type\": \"DATE\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n },\n {\n \"type\": \"TEXT\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n }\n]", + "body": "[\n {\n \"type\": \"DATE\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n },\n {\n \"type\": \"DATE\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "731afc98-e884-45b9-85f6-7ead36863028", + "id": "5a43afb5-ae60-49db-a78a-e59d891ab769", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94698,12 +94698,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "06f9ccd6-f5a0-475e-a35f-ef9a82cf3cef", + "id": "ea7aadae-a444-4c16-9abf-74fee88f05aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94748,7 +94748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4191f90-032a-4493-a6f2-495d30307afc", + "id": "35cbf942-d42d-4a4d-a322-9208444d3f1a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94788,12 +94788,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a06f21ed-f08e-446a-8141-f4aa7852d471", + "id": "b5fd685a-5d80-4a1d-b515-14c8787fe91c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -94833,12 +94833,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c79631d-e53d-46c2-ac7a-b832c1dcd4f6", + "id": "4eb467c9-31bc-48b6-b33a-382e281d20ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94883,7 +94883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06976e04-469c-43a9-84dd-ff90bd96ca81", + "id": "44bf7da3-2f4a-4dd0-958c-3031b0d027b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94923,7 +94923,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -94934,7 +94934,7 @@ } }, { - "id": "04416257-9af3-4d71-96d1-8bbd24fce23c", + "id": "567af831-c926-429b-adf3-0e0e0585b9ca", "name": "Create Non-Employee Source Schema Attribute", "request": { "name": "Create Non-Employee Source Schema Attribute", @@ -94989,7 +94989,7 @@ }, "response": [ { - "id": "6ac46f2d-5236-419d-a06c-fd90bfbb05b3", + "id": "e85b8d3c-f547-48fe-b03a-da8a9c414071", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -95042,12 +95042,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"DATE\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "body": "{\n \"type\": \"IDENTITY\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1bc4df90-72e3-408a-9fde-436900130fdc", + "id": "951e7301-e4e0-4ff8-a696-4c38ea42051d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95100,12 +95100,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "13ae5d9f-8669-4aa5-b0f0-9aa1355b3a0c", + "id": "10ac5fc7-512b-4666-9c0a-df72661a4063", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95163,7 +95163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fafa7482-07d7-4b27-9fba-64fcadd33be5", + "id": "55cfbd89-e600-45bd-bf13-e790da01d548", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95216,12 +95216,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "427e8ec3-37e6-49eb-bfb5-caa1f6782bff", + "id": "b254e925-9847-404e-9dae-ba38c2850db7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95279,7 +95279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d60e5051-d4e3-4c11-89d8-c8530e648175", + "id": "6633ed81-bfa3-483d-9f39-8c4cf1999bca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95332,7 +95332,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -95343,7 +95343,7 @@ } }, { - "id": "a25862e4-2ec8-40ff-900b-238bbbe879ec", + "id": "5e26b3f3-7dbd-4f06-8b11-7bcbe3d5537f", "name": "Delete all custom schema attributes", "request": { "name": "Delete all custom schema attributes", @@ -95385,7 +95385,7 @@ }, "response": [ { - "id": "fd741830-d1ce-4a85-974c-af06de18703b", + "id": "0aaedbd9-a8cb-4a81-bca7-833200a106ba", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -95420,7 +95420,7 @@ "_postman_previewlanguage": "text" }, { - "id": "89eccfe4-d496-4e05-aa58-64d4323fcb96", + "id": "840f260a-dd2c-4884-8c19-89637560dae4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95460,12 +95460,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c57f105c-01f0-41e7-b58a-514e3ebc28f8", + "id": "d45f2291-6ca4-47d7-88c7-b906b0fda623", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95510,7 +95510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8a69278-58b1-467c-921a-a7bedc7d91f4", + "id": "c3ed56b0-07b0-4aac-88f8-bb769cb7cb62", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95550,12 +95550,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41da4398-df1e-4fac-8589-db2536399020", + "id": "9e9a8394-6ca0-4716-bf76-742d4a9b9a46", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95600,7 +95600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbb1f2a6-351e-4fb0-9151-bfd17dbbbb6f", + "id": "26b56ca9-f0df-45b8-a703-70a9231c1492", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95640,7 +95640,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -95651,7 +95651,7 @@ } }, { - "id": "b0ac93cd-0d36-4a83-9625-840a5a44de77", + "id": "4922c3a8-a439-4fad-8ab8-a59d5e87c0e1", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -95704,7 +95704,7 @@ }, "response": [ { - "id": "dfecbf40-d0df-46e1-bf53-8670913422f3", + "id": "3ba4722c-8e95-42a7-8b1b-0889f49e68b8", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -95745,12 +95745,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"DATE\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "body": "{\n \"type\": \"IDENTITY\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "401d471e-6af6-480e-9d00-2bf4c90d9177", + "id": "18a7c4fe-78b0-4697-9982-d87ac88bfc4d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95791,12 +95791,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "47d5e0c2-0460-4e77-9f4a-b264c2d0b92d", + "id": "e6609b37-1171-49b6-ab3a-3c644bb4512d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95842,7 +95842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3df8988-6ad7-4ce4-bcaf-7917a7ea2202", + "id": "fb47f12b-2df9-4c31-b0c3-58776d853b70", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95883,12 +95883,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "521ab8b9-3647-4dff-bb07-3f1e9ecfd8f8", + "id": "a3242217-21ef-4169-b42f-4cb968972788", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95934,7 +95934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23114d8b-26ac-44ad-83e3-2b81f36440be", + "id": "9952bc4a-4fd7-4946-963c-bfc149b43651", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95975,7 +95975,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -95986,7 +95986,7 @@ } }, { - "id": "1dafa1e8-af61-4cce-a3ed-afd919bb4bd0", + "id": "d4a5d875-0fc5-4e7a-a7fa-eed6ff2486d7", "name": "Patch Non-Employee Source's Schema Attribute", "request": { "name": "Patch Non-Employee Source's Schema Attribute", @@ -96041,7 +96041,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -96052,7 +96052,7 @@ }, "response": [ { - "id": "33471f57-5940-43ab-8d4d-b083c5fe3b8c", + "id": "2174574c-2a61-444d-afdc-75077c5bb933", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -96089,7 +96089,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -96106,12 +96106,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"DATE\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", + "body": "{\n \"type\": \"IDENTITY\",\n \"technicalName\": \"\",\n \"label\": \"\",\n \"id\": \"\",\n \"system\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"helpText\": \"\",\n \"placeholder\": \"\",\n \"required\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68405925-6977-4d2b-b270-4301b8133af9", + "id": "272eb807-f0c3-44e4-921a-c3de10ce0beb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96148,7 +96148,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -96165,12 +96165,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ccdea37c-e2e0-4ed2-961c-110cfe66d6f5", + "id": "abc0b5f0-04e1-4c01-b5aa-b13918e36fbc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96207,7 +96207,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -96229,7 +96229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f5c2faa-6c80-4a16-9145-2d037b98f6f4", + "id": "d1889f3f-7c0c-4d80-8624-e0afe4d2a143", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96266,7 +96266,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -96283,12 +96283,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7bbee64e-6bd9-42b9-9ab4-fd1ea637105b", + "id": "33f2ff73-6882-4e29-b3e9-86f52f23a209", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96325,7 +96325,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -96342,12 +96342,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04c55a23-30b7-4ccb-82cb-08a6bf654e42", + "id": "265af6c1-b45e-4eff-8168-aa76e5db6f3a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96384,7 +96384,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -96406,7 +96406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "214ca69a-ba0a-4338-accb-e1384adf6324", + "id": "5c9fea2c-c0ea-40e4-bfb9-4c3141cf34e2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96443,7 +96443,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -96460,7 +96460,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -96471,7 +96471,7 @@ } }, { - "id": "390da653-77e2-4c58-b400-68503a522691", + "id": "89e7c3b6-fca7-4932-872a-744ce164868c", "name": "Delete Non-Employee Source's Schema Attribute", "request": { "name": "Delete Non-Employee Source's Schema Attribute", @@ -96524,7 +96524,7 @@ }, "response": [ { - "id": "ff782b18-0455-4c6f-b7f9-b50ccae4d1e4", + "id": "cc7b325c-6827-483d-ae08-7e8abacd2a8d", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -96560,7 +96560,7 @@ "_postman_previewlanguage": "text" }, { - "id": "aeff6b34-cdf7-41b2-94a8-517cbc2e7af7", + "id": "bc8cbbf1-ade7-4864-b7e0-9e4267aabbfb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96601,12 +96601,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "02eba37a-ffce-488b-ba66-aba090ef9316", + "id": "25d37e53-83bf-4297-927f-7dd0a7b70fac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96652,7 +96652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9444260-d8f9-41d9-b63c-e2a9ab28db7d", + "id": "a321503c-9ea3-49b1-9171-74f682dedeab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96693,12 +96693,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29831c6f-0c7f-498a-9f21-f572397acb75", + "id": "4c27ea60-7243-49e9-bca3-c79e12d238ef", "name": "Too Many Requests - Returned in response to too many requests in 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": "5ff8ce99-eace-4fbe-a023-b54b58815882", + "id": "df6f5449-f978-481a-9cde-58cf1adaa4e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96785,7 +96785,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -96802,7 +96802,7 @@ "description": "", "item": [ { - "id": "16d2c67b-f562-404f-88a3-0371c09f92d5", + "id": "ce34edc9-0965-4dc6-bb97-e9a82672ffc1", "name": "Change MAIL FROM domain", "request": { "name": "Change MAIL FROM domain", @@ -96844,7 +96844,7 @@ }, "response": [ { - "id": "8f5650b3-a011-4f49-af5b-7d464fae9274", + "id": "756311fb-1574-4eaa-8a59-c56becdf3991", "name": "MAIL FROM Attributes required to verify the change", "originalRequest": { "url": { @@ -96895,12 +96895,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\",\n \"mxRecord\": \"\",\n \"txtRecord\": \"\",\n \"mailFromDomainStatus\": \"PENDING\"\n}", + "body": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\",\n \"mxRecord\": \"\",\n \"txtRecord\": \"\",\n \"mailFromDomainStatus\": \"SUCCESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2904c557-620d-478d-aca7-54f274b4770f", + "id": "d5143645-28c9-4cb7-ab6e-7bf3383a4b67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96951,12 +96951,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6e74817c-5821-47e3-8cb7-37699a84a4d2", + "id": "790a81fd-da21-450c-8e5c-98abef878727", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97012,7 +97012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f04a6cc8-86d7-42a8-acd6-1cadedf6a42e", + "id": "fcc22b64-fb7d-4b03-a499-6078de989aee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97063,12 +97063,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b9a880a5-ef83-4213-9429-0131f9c52d8c", + "id": "523280c8-3346-44fe-a125-b2a59062db48", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97124,7 +97124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a707ac4-94b0-4b7c-a7e8-51c28205d596", + "id": "937b29d8-9028-4aae-b11f-60235385d08d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97175,7 +97175,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -97186,7 +97186,7 @@ } }, { - "id": "f191e6db-2558-4219-8baa-c4836747623e", + "id": "7b5f9135-4435-4037-ac66-885a1608c685", "name": "Get MAIL FROM Attributes", "request": { "name": "Get MAIL FROM Attributes", @@ -97231,7 +97231,7 @@ }, "response": [ { - "id": "48e1a57b-9bc6-4132-b62d-6e2caff82253", + "id": "f3d4df5c-1dbe-4164-b834-10e92d25aeff", "name": "MAIL FROM Attributes object", "originalRequest": { "url": { @@ -97280,12 +97280,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\",\n \"mxRecord\": \"\",\n \"txtRecord\": \"\",\n \"mailFromDomainStatus\": \"PENDING\"\n}", + "body": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\",\n \"mxRecord\": \"\",\n \"txtRecord\": \"\",\n \"mailFromDomainStatus\": \"SUCCESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb825e19-03b8-45a5-8f03-b7d856ca4724", + "id": "d35f14ae-73d1-42ff-a215-da6d4fd84708", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97334,12 +97334,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ec77f86-df68-459e-a592-3036268f0a14", + "id": "2e6d6a1f-0d08-4b9b-a170-382daabe9d75", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97393,7 +97393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b92c39c-bbfb-48b6-9b10-658f887788e1", + "id": "bc4bf3af-97bb-4d55-b366-ff6ad80064a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97442,12 +97442,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "32805c35-1f2c-41ae-92d5-60c5980e8471", + "id": "f4b24b2b-b3ca-4d94-95ec-4b0a8b9c4d80", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97501,7 +97501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "009d1772-8c0e-4096-adbd-2b1faa4177f0", + "id": "14cb6a00-a796-4d07-9385-f0cb81f2d46d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97550,7 +97550,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -97561,7 +97561,7 @@ } }, { - "id": "64d57b61-0504-4d4a-82b3-dfd506f60f43", + "id": "556fb489-e982-4943-93bf-127c4d68d9be", "name": "List Notification Template Defaults", "request": { "name": "List Notification Template Defaults", @@ -97618,7 +97618,7 @@ }, "response": [ { - "id": "5070c255-3a8b-45ef-9e2b-8f79cf9a804a", + "id": "40766cd6-ec02-44c2-92aa-c98f76cd55c8", "name": "A list of the default template objects", "originalRequest": { "url": { @@ -97684,12 +97684,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"\",\n \"name\": \"\",\n \"medium\": \"TEAMS\",\n \"locale\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\"\n }\n]", + "body": "[\n {\n \"key\": \"\",\n \"name\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\",\n \"medium\": \"SLACK\",\n \"locale\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "925e4e3e-a6ea-4071-946c-6e97eab4ff44", + "id": "7638e96f-fe4c-4d88-8afa-27b41bca2d13", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97755,12 +97755,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34c378cb-9daf-4f61-87a4-aad53f7f87a7", + "id": "6cedb544-0c00-4210-8aea-0ce8de01d605", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97831,7 +97831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "084b20a9-f89f-45b8-a026-921de2154b2b", + "id": "d64fc810-d1fe-45f2-9d91-473fd580fc87", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97897,12 +97897,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2c611b4b-1ee2-4983-81f7-b5a724c52824", + "id": "fc6b90fc-0b82-40d8-a818-a841a9ba94ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97973,7 +97973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10a17cd7-46c9-48e8-b02b-9996ab737856", + "id": "e1db3d90-8006-47a5-9998-3cc6c0970372", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98039,7 +98039,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -98050,7 +98050,7 @@ } }, { - "id": "d38e750f-84b0-4e22-b043-2e3d5e978938", + "id": "26d9dfa2-ce17-4e70-bff7-81a4b1607c76", "name": "List Notification Templates", "request": { "name": "List Notification Templates", @@ -98107,7 +98107,7 @@ }, "response": [ { - "id": "019e724c-078a-4e3a-902f-ac24126c0719", + "id": "7165a545-e9ee-44a4-b2e8-c4d25d4a065c", "name": "A list of template objects for your site", "originalRequest": { "url": { @@ -98173,12 +98173,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n }\n]", + "body": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6edc1e51-dcee-42e9-9e7b-8791d96cfdf6", + "id": "5079dc5b-c97c-4749-aa14-a5409dffc95e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98244,12 +98244,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3e6cdaad-c02b-49de-b04f-09a9bd8c7e40", + "id": "60174cc5-c2b7-4e88-b977-9bc1c5e6475b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98320,7 +98320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39406c25-fd66-4e92-b8a6-244a483c444e", + "id": "2fc7b06f-7b88-4be3-b49c-8f7700508f55", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98386,12 +98386,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68b0b01e-9012-4347-878d-e44e102cbfb8", + "id": "73443b12-b26a-4160-998e-d33c26db0060", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98462,7 +98462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19d446cc-4ba1-4f56-886e-042945e86fd7", + "id": "cc8ded2c-7b47-46c6-a411-da2a7671ea94", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98528,7 +98528,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -98539,7 +98539,7 @@ } }, { - "id": "ac1ae1c3-1182-4c82-9b5b-cbb46d19101c", + "id": "4031aa2e-7fcd-4428-adc9-0392a36978a3", "name": "Create Notification Template", "request": { "name": "Create Notification Template", @@ -98570,7 +98570,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -98581,7 +98581,7 @@ }, "response": [ { - "id": "461a7404-b16f-42da-94bd-103d8bb5f0ce", + "id": "e5187aec-78a3-4c64-9a8f-26e4da3fb869", "name": "A template object for your site", "originalRequest": { "url": { @@ -98615,7 +98615,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -98632,12 +98632,12 @@ "value": "application/json" } ], - "body": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ea94aa4-ef2e-485a-8920-227caa9b0a2d", + "id": "a1551539-797f-457f-974f-8974726502ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98671,7 +98671,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -98688,12 +98688,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0942df39-1c6c-4741-80b5-09dfa4fa4525", + "id": "c4ee5618-676d-4f61-9c83-e163296a5943", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98727,7 +98727,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -98749,7 +98749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c9f840a-2714-4e3b-b175-b54c4ca89d7d", + "id": "d2579184-ce8f-40fa-a611-f7d32d28dd9f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98783,7 +98783,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -98800,12 +98800,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5e2869a-e1e8-492e-b5c9-2795e243a845", + "id": "645ee529-ac46-48aa-a039-302ab2b64281", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98839,7 +98839,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -98861,7 +98861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6a07be0-3bcb-457c-8273-bae898380e26", + "id": "9d0e0da3-d94f-4879-bb3d-9c17e4f445dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98895,7 +98895,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -98912,7 +98912,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -98923,7 +98923,7 @@ } }, { - "id": "6b66b242-8b72-4bf2-bbc9-a9c845425c9e", + "id": "d961d129-6558-43fd-a285-8bb6d9e1c7dd", "name": "Get Notification Template By Id", "request": { "name": "Get Notification Template By Id", @@ -98964,7 +98964,7 @@ }, "response": [ { - "id": "98d7c57c-7587-4dcd-b276-a6bf298e31c6", + "id": "52724c89-2285-4f63-a6e6-56078f079113", "name": "A template object for your site", "originalRequest": { "url": { @@ -99003,12 +99003,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n }\n]", + "body": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"name\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df08630c-ed90-47a1-acaa-ffd8dcd2806a", + "id": "08e53175-10ab-4ab4-a8a1-936500f40a51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99047,12 +99047,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bae0b618-a755-4230-822c-adaa7db2236e", + "id": "82fd6e44-019d-49ef-a86a-9c709df80e03", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99096,7 +99096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab649e51-0b05-44fa-b2d3-5a995dd853d8", + "id": "de71afee-7eb0-4a5b-98eb-9e763bf9d16c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99135,12 +99135,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8855547b-851b-4a76-ac3f-55786bd0ae12", + "id": "1bc03f50-09da-4151-b782-7c993b1de02d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99184,7 +99184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66ae2f0d-0fcf-47d5-a0a2-0f67da3e36f2", + "id": "ee7cbe6d-6a4b-407b-9902-5774da42b122", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99223,7 +99223,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -99234,7 +99234,7 @@ } }, { - "id": "ee5d3801-7005-401b-add8-afe38040fae4", + "id": "6723e084-fbb7-497b-b91b-852b79d93e5c", "name": "Bulk Delete Notification Templates", "request": { "name": "Bulk Delete Notification Templates", @@ -99266,7 +99266,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99277,7 +99277,7 @@ }, "response": [ { - "id": "9a859db3-c182-44cd-b9e9-f094f735d103", + "id": "fe75c0e9-9994-4ee7-b5bf-c5a971b962f5", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -99308,7 +99308,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99324,7 +99324,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8efa23d5-064b-4c1b-a6d4-3f94d6167477", + "id": "300d067e-4037-4354-8640-9497b3a2cc41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99359,7 +99359,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99376,12 +99376,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5abf5c0-ce1c-4152-89dd-f7ade8597cf3", + "id": "aa8c8f5f-2127-495a-8ba0-34983e787796", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99416,7 +99416,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99438,7 +99438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bc752c6-fd89-4f46-8285-a6c00fd5f9c7", + "id": "902673e6-6d25-472b-accc-0f629c4704ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99473,7 +99473,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99490,12 +99490,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fa814c1-b6ed-495e-918b-d935a206131f", + "id": "c58112c1-2eb4-42d1-9022-9b2c5955a432", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99530,7 +99530,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99552,7 +99552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43c9e883-5da6-4b4f-883e-b04e7c22c98c", + "id": "6f1ec771-ed51-4712-9538-2444b6c4ef7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99587,7 +99587,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -99604,7 +99604,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -99615,7 +99615,7 @@ } }, { - "id": "fbe5b3a0-d7fc-40a0-ae5c-42046f35abaf", + "id": "d79c9e84-89c2-4a01-abc9-d0c6c841fa60", "name": "Get Notification Template Context", "request": { "name": "Get Notification Template Context", @@ -99644,7 +99644,7 @@ }, "response": [ { - "id": "c7416238-923f-42d8-9a80-df07f46dbbed", + "id": "efbd0b3c-9819-4ab1-87e4-d2bbe17f4850", "name": "Notification template context attributes for a specific tenant.", "originalRequest": { "url": { @@ -99687,7 +99687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed90dbf2-29be-4e28-83a3-864b9f99756b", + "id": "5a75d535-df2e-496c-babf-092ba56bbb1f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99725,12 +99725,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de0661c8-20c1-4f90-a88b-4d53a5c5656b", + "id": "807bdd14-684e-468f-b831-cadbdc6333af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99773,7 +99773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea2caed5-69ae-42cd-a99e-12f3a1a068f9", + "id": "74402b63-fbe5-4f95-8d37-7b0e1d040ebe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99811,12 +99811,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "347b1dd3-b579-478b-bf58-9b74318afd23", + "id": "b1937761-fbc3-4d27-a7fc-099a42cb22ca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99859,7 +99859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbc5398e-b1a1-4a2c-93a6-c93555e48c9d", + "id": "6688d9c0-160d-45ab-bb86-b291f5ef2b68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99897,7 +99897,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -99908,7 +99908,7 @@ } }, { - "id": "b51bac95-352d-479d-975a-787b197cb1e2", + "id": "09bf5340-c81f-49cb-8bba-2d3f8160da39", "name": "Get Notification Preferences for tenant.", "request": { "name": "Get Notification Preferences for tenant.", @@ -99949,7 +99949,7 @@ }, "response": [ { - "id": "d57f0840-ef28-4dd9-b956-488191ad0b63", + "id": "a6b6f431-1a25-410d-a366-157734ee632a", "name": "Return preference for the given notification key.", "originalRequest": { "url": { @@ -99988,12 +99988,12 @@ "value": "application/json" } ], - "body": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "body": "{\n \"key\": \"\",\n \"mediums\": [\n \"EMAIL\",\n \"SLACK\"\n ],\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1a57e04b-dd16-4dd7-bfb8-807720785820", + "id": "9d7b5609-c0c4-4332-acd1-739b64ab5270", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100032,12 +100032,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "215ddade-30db-42e2-ac4c-9925b6b4d8e1", + "id": "e68cbc67-1e69-463d-ad8d-72f9b8ce2328", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100081,7 +100081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acf92534-dcad-4827-8aac-d6cd634f5230", + "id": "888add9c-a090-4956-9867-9a79f25daa6d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100120,12 +100120,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb9fc29d-8611-4f0d-bc4e-c1c560fc1c20", + "id": "a7649bba-87cb-4291-931b-1f4966788a70", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100164,12 +100164,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1613c77e-77af-4e76-b5f0-6218d672824c", + "id": "d58cc22b-adad-4451-9eeb-3e046187b796", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100219,7 +100219,7 @@ } }, { - "id": "d7d01d89-38ee-4bb8-a633-839931381bff", + "id": "3792f87e-6c5a-44b0-a7c6-4ed5fa63bc81", "name": "Overwrite the preferences for the given notification key.", "request": { "name": "Overwrite the preferences for the given notification key.", @@ -100262,7 +100262,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"EMAIL\",\n \"SLACK\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -100273,7 +100273,7 @@ }, "response": [ { - "id": "519f9ec5-cb4c-4d6f-9547-d33241f08888", + "id": "ec0f98c4-e261-4b29-99fa-af00a844324b", "name": "The preferences were successfully replaced, and an echo of the new preferences are sent back to caller.", "originalRequest": { "url": { @@ -100308,7 +100308,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"EMAIL\",\n \"SLACK\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -100325,12 +100325,12 @@ "value": "application/json" } ], - "body": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "body": "{\n \"key\": \"\",\n \"mediums\": [\n \"EMAIL\",\n \"SLACK\"\n ],\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5734b6d-36e5-4e1d-867b-b318ef60cad8", + "id": "276085be-3780-4718-9da7-c3795202d8cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100365,7 +100365,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"EMAIL\",\n \"SLACK\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -100382,12 +100382,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9cb8c7cc-0370-4584-b478-97137d6bff80", + "id": "b35269aa-4222-4e5b-9d77-db0621054299", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100422,7 +100422,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"EMAIL\",\n \"SLACK\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -100444,7 +100444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "716f12f4-2a1b-482a-87bd-e84bb76db059", + "id": "84ca1153-2d7e-4a17-8731-892d5fd9b2f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100479,7 +100479,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"EMAIL\",\n \"SLACK\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -100496,12 +100496,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8320e3a0-549a-455c-ae15-1f828d714aba", + "id": "0020660b-4cf2-4d05-8c4e-0c1974052b12", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100536,7 +100536,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"EMAIL\",\n \"SLACK\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -100553,12 +100553,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d947987-c72b-486d-9667-b7aaa4fcfc0d", + "id": "4e5bdafa-a859-48f0-a58b-6377cb6237bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100593,7 +100593,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"PHONE\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"EMAIL\",\n \"SLACK\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -100621,7 +100621,7 @@ } }, { - "id": "c338644a-f22d-45c9-9ce1-3897624a1308", + "id": "6c802676-971b-4b6c-99f0-b70d5205b105", "name": "Send Test Notification", "request": { "name": "Send Test Notification", @@ -100652,7 +100652,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100663,7 +100663,7 @@ }, "response": [ { - "id": "6f9ec730-8fc7-458d-a74f-4038c6efcbf7", + "id": "a5be309a-69bc-41df-b969-6abec39eca73", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -100693,7 +100693,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100709,7 +100709,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6cf73819-8340-4550-b317-291d45daf2ed", + "id": "2e5dd527-624a-4a6b-ac62-a9b7ff2ab7b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100743,7 +100743,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100760,12 +100760,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "452425c5-27cb-4575-a6e5-025caf06e755", + "id": "93073b14-ea1b-4761-a1a8-71f77429cac9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100799,7 +100799,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100821,7 +100821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c9f0024-a75d-44b7-afbc-d478e11a95d2", + "id": "c87000e2-8159-4160-93e5-de2f20ab1bd7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100855,7 +100855,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100872,12 +100872,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af7f9e10-a147-4592-aaad-3e2c4466de8c", + "id": "6646ed3e-f169-47fe-a3ab-4c59edcbd33a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100911,7 +100911,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100928,12 +100928,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87200db6-f58e-4a93-a20e-338ccf4238ec", + "id": "02515bf3-bc01-4629-9505-a80b123b4057", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100967,7 +100967,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100989,7 +100989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d1c86cf-2f69-4add-a3fb-7262e891bc24", + "id": "9d4f13ae-6ea5-4f46-b9c7-4e211eb61c63", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101023,7 +101023,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"SLACK\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -101040,7 +101040,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -101051,7 +101051,7 @@ } }, { - "id": "fd5fe35e-5836-48ee-baa5-1b4bbe3a64ca", + "id": "755432e1-532f-44c5-b0ca-bcbc95d8d1a0", "name": "List From Addresses", "request": { "name": "List From Addresses", @@ -101126,7 +101126,7 @@ }, "response": [ { - "id": "0cf41524-a3b7-4a38-b3c4-b7093ca4e879", + "id": "824bd2ca-f2c5-404f-834c-8ba81b899647", "name": "List of Email Status", "originalRequest": { "url": { @@ -101210,12 +101210,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"PENDING\"\n },\n {\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"FAILED\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n },\n {\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "31a187fa-6185-452a-b566-92ea465340b0", + "id": "7235d720-9e07-471f-a324-11455a2d92ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101304,7 +101304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a906fcb-d382-42ab-8e86-c306a90b90cc", + "id": "a814d8d4-7443-48f7-ae2e-2a8e2bf3fad4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101388,12 +101388,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a411463-05ed-49a5-b2ee-136c57fd0240", + "id": "f401ce81-c084-498e-89ed-f56232cf02d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101482,7 +101482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74ec8c8c-8b8f-4207-898d-fdc38c431c76", + "id": "4a547a2e-d334-4df5-bc50-7dc7b50a09a2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101566,7 +101566,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -101577,7 +101577,7 @@ } }, { - "id": "0483fb8c-4401-4519-adb5-ba3398285d69", + "id": "cd6b7844-9289-4d30-99e3-d151b53b4606", "name": "Create Verified From Address", "request": { "name": "Create Verified From Address", @@ -101608,7 +101608,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"PENDING\"\n}", "options": { "raw": { "headerFamily": "json", @@ -101619,7 +101619,7 @@ }, "response": [ { - "id": "be252c60-6aad-4d7e-9d1f-dc4782cca582", + "id": "31658e70-74f9-484e-bfe3-769f440441cd", "name": "New Verified Email Status", "originalRequest": { "url": { @@ -101653,7 +101653,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"PENDING\"\n}", "options": { "raw": { "headerFamily": "json", @@ -101670,12 +101670,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "body": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e3ed7088-badb-44d7-9a69-1962ccbda3f4", + "id": "c3c4d373-8908-415d-bdf0-d3406aa15b80", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101709,7 +101709,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"PENDING\"\n}", "options": { "raw": { "headerFamily": "json", @@ -101726,12 +101726,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6db37414-6e64-4146-9708-765a5863d056", + "id": "beda98cf-de98-4c45-b85d-1c8fe0dfd02a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101765,7 +101765,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"PENDING\"\n}", "options": { "raw": { "headerFamily": "json", @@ -101787,7 +101787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8da7455d-20cf-497e-8f2b-70373b1bc494", + "id": "0a19e591-2c5c-4313-93ba-5c89b75e0f35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101821,7 +101821,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"PENDING\"\n}", "options": { "raw": { "headerFamily": "json", @@ -101838,12 +101838,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6961529-8ac9-4e7d-a0bb-f5e9243e45a9", + "id": "5f0f3dd4-6c71-4f44-90b7-a242580ad92e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101877,7 +101877,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"PENDING\"\n}", "options": { "raw": { "headerFamily": "json", @@ -101899,7 +101899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb0ef9cc-b2e8-47c8-83f0-59aabaa91196", + "id": "7e111a64-519d-442d-bb4d-aa1eabb2869f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101933,7 +101933,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "raw": "{\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"PENDING\"\n}", "options": { "raw": { "headerFamily": "json", @@ -101950,7 +101950,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -101961,7 +101961,7 @@ } }, { - "id": "db3e5805-1b9e-4898-8c7c-c47cfb6e84df", + "id": "07924a43-2295-46ce-8e7f-49de34cc0bfb", "name": "Delete Verified From Address", "request": { "name": "Delete Verified From Address", @@ -102002,7 +102002,7 @@ }, "response": [ { - "id": "f25c7afe-2032-4b00-a543-a4407e7495ee", + "id": "3589094c-fe7b-4ce3-92a1-d4edfec08e34", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -102036,7 +102036,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0a2d042f-f0fa-4735-8ff6-4915439d11e2", + "id": "63d98653-ccc8-4de9-bd93-b099cc597e6c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102075,12 +102075,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1dbc601-d838-4fd9-b2ed-12c2ba931efd", + "id": "87eb6be4-9276-4a73-bbb1-8c87fff03a79", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102124,7 +102124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fa8f281-c312-459e-bb84-5f7f02be478c", + "id": "7956fedd-5859-4423-adb3-ff8dbbb5ee29", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102163,12 +102163,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b6cc2a9-4205-4b3b-b738-a68dfe91c350", + "id": "26e7a08e-b714-4af9-8104-9a45bf1aad12", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -102207,12 +102207,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76a99670-d199-4d43-98a7-2ae1181a2e9a", + "id": "2577e5f8-4b57-42a3-8b63-3eb57e7d732c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102256,7 +102256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9634593-a4c4-4cbc-9dce-9bd3757095bb", + "id": "c295ef88-1de1-4074-9b95-37512388c7a0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102295,7 +102295,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -102306,7 +102306,7 @@ } }, { - "id": "3bd70fe2-e60c-4fac-8976-9e7b6ad9c224", + "id": "a44b2364-2c0e-4fe9-9771-c2eaa0c8f1ae", "name": "Get DKIM Attributes", "request": { "name": "Get DKIM Attributes", @@ -102335,7 +102335,7 @@ }, "response": [ { - "id": "dd17df58-6888-48bf-8756-3934ab412d22", + "id": "6c698880-cbed-451b-b9a1-cc5de820a2e5", "name": "List of DKIM Attributes", "originalRequest": { "url": { @@ -102378,7 +102378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "801bff0d-3ade-4a78-ad7b-f638ffe669bf", + "id": "71ac8c03-4863-4b07-b8e2-2c14ff0414f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102416,12 +102416,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6caa80e6-66d4-4f73-85d4-25e765380601", + "id": "00b1ce62-d6d7-4586-a42f-2b3c9047624f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102464,7 +102464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5faf0473-d9cc-4747-ac27-0ade967816db", + "id": "913cc528-dcdb-4b9a-8a41-dea089c42aa0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102502,12 +102502,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3321e73-816b-48d5-b616-9f642f9037e6", + "id": "f27ddb69-43b0-462c-926a-49a5337c9cbb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102550,7 +102550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c016b609-2b83-4fac-a03e-425e0e2aef06", + "id": "398f8a31-1ce2-4608-8eb9-c1d86eb80b0d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102588,7 +102588,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -102599,7 +102599,7 @@ } }, { - "id": "e88980b8-dcca-4f85-a7a6-cd6c3c03effc", + "id": "6d383356-12b9-4dac-a030-afdd0c715c17", "name": "Verify domain address via DKIM", "request": { "name": "Verify domain address via DKIM", @@ -102641,7 +102641,7 @@ }, "response": [ { - "id": "e032ab40-97a9-469a-a5be-0cfa48d7b08f", + "id": "37d4cbaf-ee56-4fac-bc18-6bf58395bf32", "name": "List of DKIM tokens required for the verification process.", "originalRequest": { "url": { @@ -102697,7 +102697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a22a920d-1c25-48e3-bfe6-ad9af9844020", + "id": "0e1fd11b-443b-4d4a-bb6e-efff39596ff4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102748,12 +102748,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aba3768a-c0f5-4cce-b765-8674f1d2eebd", + "id": "6eba5d09-b8bd-4b67-b4a5-6e6518333365", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102809,7 +102809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "816a7f01-d0b8-4ac4-b20b-557ce7990e19", + "id": "fdd2a564-177c-4493-9fb2-342ecf9152ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102860,12 +102860,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9039daf9-0623-4340-a063-f33663c2c37f", + "id": "360d60ee-9b71-4c25-a2a0-e5aa7fee57b7", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -102921,7 +102921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5af9b7b7-d17a-4556-8a41-dfd52e7ba447", + "id": "37e076aa-7368-47d6-8cab-c29076403a6b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102977,7 +102977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b878475-9128-4397-a2d3-78aa399b045e", + "id": "c2490132-bf70-4032-af6d-9682f0c926bd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103028,7 +103028,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -103045,7 +103045,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 IdentityNow REST API.\nRefer to [Authentication](https://developer.sailpoint.com/idn/api/authentication) for more information about OAuth and how it works with the IdentityNow REST API.\n", "item": [ { - "id": "5bd7378b-d4a8-43fb-b53f-e51e57df9e1c", + "id": "7931242c-24fd-4280-97a1-19c24f2a892e", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -103084,7 +103084,7 @@ }, "response": [ { - "id": "9e71b9fd-7eed-4e4b-930a-21f707312a0d", + "id": "9ea7185f-316c-4354-aae7-546dd92fff86", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -103132,12 +103132,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"ONLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n },\n {\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"REFRESH_TOKEN\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"ONLINE\",\n \"type\": \"PUBLIC\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"CLIENT_CREDENTIALS\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"PUBLIC\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n },\n {\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"CLIENT_CREDENTIALS\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"PUBLIC\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ba3c2ad6-b8ab-48e5-9828-0e1f9c658c81", + "id": "df5313e3-4308-4a38-912f-2ea87da81857", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103185,12 +103185,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "862ced37-7ea9-45dd-a68c-c50d67047aad", + "id": "3c54c341-8b22-4dcd-a337-5799a7dea1ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103243,7 +103243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b805922e-7005-46af-ae24-23f01d62fee7", + "id": "3e2690b1-6fa2-4975-b894-cd771b06d360", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103291,12 +103291,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "578455e5-5a06-4418-b8b9-930e01ab9785", + "id": "dd0e6704-f580-4d1e-8ff2-ea1c3485cdf7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103349,7 +103349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a67d2b74-ae81-4812-84e4-fe2987e6c826", + "id": "46d53c6f-0c29-441c-bdcb-4d73d5344b76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103397,7 +103397,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -103408,7 +103408,7 @@ } }, { - "id": "1679883e-f51c-4b2a-9ae6-ec7fa046a5f7", + "id": "93c5df96-8f03-40b4-9037-d113975d43d2", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -103439,7 +103439,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"ONLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -103450,7 +103450,7 @@ }, "response": [ { - "id": "b7d2a0bc-b54b-405f-8f32-640a24f29c19", + "id": "ab91ca9e-af23-4de4-8b3d-2eb30f9a00fa", "name": "Request succeeded.", "originalRequest": { "url": { @@ -103484,7 +103484,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"ONLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -103501,12 +103501,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"secret\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"REFRESH_TOKEN\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"PUBLIC\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"secret\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"CLIENT_CREDENTIALS\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"ONLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3f8b56a-8623-4c1b-984b-b0aaf6b8aac3", + "id": "8bdfa398-552a-445e-88d4-707f3a66cd3b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103540,7 +103540,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"ONLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -103557,12 +103557,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e262eacb-b36f-4ec0-bc0f-a1bfa4f83fae", + "id": "d42401dc-0afc-40ba-8dfb-1a1c314bf2cb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103596,7 +103596,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"ONLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -103618,7 +103618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf5df310-700d-4d51-ad1e-7d381ccfa55b", + "id": "1f0d8cc3-572f-4887-96f6-33c6f2aa7c18", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103652,7 +103652,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"ONLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -103669,12 +103669,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0a87065-9450-4e0f-996f-5f01212c0ff0", + "id": "df0da5be-6284-427d-bace-6fb8b3228069", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103708,7 +103708,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"ONLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -103730,7 +103730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfb73509-4b1e-47b1-9fb4-fba0c6626a20", + "id": "a736a426-4d56-423b-be39-646ca2628942", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103764,7 +103764,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"ONLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\n \"enabled\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -103781,7 +103781,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -103792,7 +103792,7 @@ } }, { - "id": "4359e6c1-8b1c-40f3-8539-b4e28ace2736", + "id": "84f824ce-509c-4b3a-9600-8c8edaee1cc1", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -103833,7 +103833,7 @@ }, "response": [ { - "id": "797e8e81-f77d-4ea1-a7d8-5781d35712e2", + "id": "cf0b32d5-8033-450a-a58e-ae675e5ce7dd", "name": "Request succeeded.", "originalRequest": { "url": { @@ -103872,12 +103872,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"ONLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"REFRESH_TOKEN\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"ONLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ad75afb-9d87-4e36-97c0-ebad3965a740", + "id": "b126a3c4-b087-4f9d-af70-eaef651f5cc0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103916,12 +103916,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76b5ece7-9828-415e-8e47-e12fb12cee11", + "id": "3455f105-2614-4747-b0e3-a2a5f0827cc6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103965,7 +103965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "603c1a94-53f8-414c-8c24-1be2ba038348", + "id": "847a606d-9885-401b-b9b6-981589b66fa2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104004,12 +104004,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c9043291-d486-4e03-8af1-154f3a5a78d9", + "id": "a914f7e6-68e4-4624-a838-a14c82b15cad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104048,12 +104048,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e9c6f49-6a65-48c7-a11b-4e7d142bdfa3", + "id": "31c73e25-3509-44ed-a92e-9227af33b2af", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104097,7 +104097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e8fcf58-f226-4612-81ca-2ff04821c660", + "id": "8d7d3a37-8ba4-4bce-b0d9-1e64fc4445a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104136,7 +104136,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -104147,7 +104147,7 @@ } }, { - "id": "fbe02b6f-f067-473e-8ac7-9eac43523e75", + "id": "996c075f-ea50-4ca4-a502-2f5500ee837b", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -104188,7 +104188,7 @@ }, "response": [ { - "id": "f17b0129-cea1-4c73-8b26-a4e49feb4883", + "id": "552cdc60-3c2c-438a-8748-ea6ccddde4be", "name": "No content.", "originalRequest": { "url": { @@ -104222,7 +104222,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c6dc7d9d-3855-408e-b0f0-c8c63126e296", + "id": "2e874477-f301-4443-ba98-36ef9b6465ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104261,12 +104261,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ed513be-a7ba-428c-9722-be0a4b6826ba", + "id": "eaf82241-7288-4a55-9f2e-f80a12bb6c85", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104310,7 +104310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4d22560-b8fc-4837-b784-595a689e97c5", + "id": "89d58b19-1318-4cb3-b0ea-a14993571f77", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104349,12 +104349,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3e9519d-58b2-4590-b489-4a8cbee67f4a", + "id": "93ce2b08-e4bf-48da-8ac1-80ff39266b6a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104393,12 +104393,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6164f09b-101a-4785-a16d-65624d5d2a42", + "id": "af293969-b18f-48b4-b782-cb627b9441d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104442,7 +104442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b9b3fd2-aaaf-498b-a7f1-667b318532d0", + "id": "0cba9b75-c978-4c35-be1d-53d0fc27c86a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104481,7 +104481,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -104492,7 +104492,7 @@ } }, { - "id": "6f54bf76-a9bc-4471-9b06-2839c7e26c4a", + "id": "572863fe-e7fc-45b8-8a6d-b17eaf3f72aa", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -104535,7 +104535,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104546,7 +104546,7 @@ }, "response": [ { - "id": "f061c6ef-98a9-47ad-a245-330fb44026f3", + "id": "f59420cf-588b-4749-a99b-c4d6f7e0156a", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -104581,7 +104581,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104598,12 +104598,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"ONLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"businessName\": \"\",\n \"homepageUrl\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"accessTokenValiditySeconds\": \"\",\n \"refreshTokenValiditySeconds\": \"\",\n \"redirectUris\": [\n \"\",\n \"\"\n ],\n \"grantTypes\": [\n \"REFRESH_TOKEN\",\n \"AUTHORIZATION_CODE\"\n ],\n \"accessType\": \"ONLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": \"\",\n \"enabled\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"lastUsed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "03b36255-71af-4c00-9fbd-15d29dc8a42a", + "id": "d31e312d-3963-42d8-a391-2af855a0b43c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104638,7 +104638,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104655,12 +104655,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5ede5df-2f6f-4405-8378-fd172a4e1b13", + "id": "b96fa1cd-6f5a-40ba-ba2c-b2e76ee9b4a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104695,7 +104695,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104717,7 +104717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4af6fa7f-ac27-4951-af2a-35f06daac8fb", + "id": "9545c5f1-4d19-4feb-93b6-45533daee619", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104752,7 +104752,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104769,12 +104769,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0fd9ecdf-6633-456f-a476-337a253f05ab", + "id": "10e22993-f129-491e-bfcb-aaf997ae5527", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104809,7 +104809,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104826,12 +104826,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77efffae-ea45-47c1-b75a-22951d692353", + "id": "9cb5158a-7d54-45d2-83d9-84ce82c4dce6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104866,7 +104866,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104888,7 +104888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "755bbe67-0528-4fdb-ae57-183a38c2d627", + "id": "15d76fbc-b927-4dbc-903d-d4472c6760da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104923,7 +104923,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104940,7 +104940,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -104957,7 +104957,7 @@ "description": "Operations for managing org configuration settings (eg. time zone)", "item": [ { - "id": "0bbccfc2-ed88-40d0-a932-353f9403b072", + "id": "eef647e6-15e8-4687-aebf-a6dd4c142343", "name": "Get Org configuration settings", "request": { "name": "Get Org configuration settings", @@ -104986,7 +104986,7 @@ }, "response": [ { - "id": "b9bdf11a-f9e7-4db0-9f31-7f974eee435c", + "id": "7c4aca4b-2c2e-41cd-a02b-a314ec409b97", "name": "Request succeeded.", "originalRequest": { "url": { @@ -105029,7 +105029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28c463dd-e9bf-49a5-ba6e-b156df917731", + "id": "fe2f60e1-de51-4964-a43e-a56afa89989e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105067,12 +105067,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "21074496-d790-4d82-a8e6-09892b0fe316", + "id": "41d774a7-e7a5-41f7-ab28-9d392237461b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105115,7 +105115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e02fd337-0945-44cd-b3a7-9c7c5f18af35", + "id": "74a8e4be-09ce-4ced-9e0d-3fe4edbf739e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105153,12 +105153,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4f76eb8-0b0c-4d7c-953c-402d5df015f3", + "id": "9fdf7bdd-e2ce-44ff-b4d8-801862ac955d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -105196,12 +105196,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7c9f90f3-3040-4651-923a-e60203fc5e21", + "id": "1e10bafe-a7a3-4ed6-aa72-1f4b4ba91fc1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105244,7 +105244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec40ca69-b445-4612-9195-0e070cc2e700", + "id": "9bd742cd-a4f0-4538-ba8e-08da41a14815", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105282,7 +105282,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -105293,7 +105293,7 @@ } }, { - "id": "b5445ec0-130a-4cb1-b399-a1fe92ad8b43", + "id": "5aa8b3b9-54de-437c-8aeb-a1cb412006e6", "name": "Patch an Org configuration property", "request": { "name": "Patch an Org configuration property", @@ -105324,7 +105324,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -105335,7 +105335,7 @@ }, "response": [ { - "id": "6a45259c-3b0d-42c6-bb87-c067ae86ee02", + "id": "57053267-7ae9-4aa1-8091-b593b6f7b5e9", "name": "The Org was successfully patched.", "originalRequest": { "url": { @@ -105369,7 +105369,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -105391,7 +105391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20f6ddc5-6ad1-4026-9c3a-ddc742e11ef6", + "id": "12643562-e2be-4ebf-9dcd-b33ff1e42929", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105425,7 +105425,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -105442,12 +105442,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d042d07-1994-4931-838c-1e87036961e6", + "id": "d7a6280b-85d5-4ab9-822d-5c592f36972a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105481,7 +105481,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -105503,7 +105503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "904d33b6-e317-4a83-88bf-a1aed2097d3e", + "id": "769849ed-5d3e-4692-8c06-b8437d8c7736", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105537,7 +105537,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -105554,12 +105554,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e85de7c0-2463-4d1e-a6b5-c45e996415ea", + "id": "3d6d670d-184f-40b9-bfaf-33648f489d77", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -105593,7 +105593,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -105610,12 +105610,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "94fff9be-0afc-41ca-99aa-29d7991e70d1", + "id": "fffa13f5-8683-4d16-84ea-c094798d663f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105649,7 +105649,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -105671,7 +105671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01e89511-fe86-4850-8d93-1fee89814974", + "id": "47318fab-7d2c-41a9-b0be-b189c6e9d75e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105705,7 +105705,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -105722,7 +105722,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -105733,7 +105733,7 @@ } }, { - "id": "ec0b77a8-c5ec-4759-8fdb-35fd268b0787", + "id": "58d5e996-fb41-49e9-a2ff-994389548884", "name": "Get list of time zones", "request": { "name": "Get list of time zones", @@ -105763,7 +105763,7 @@ }, "response": [ { - "id": "6e53953e-f21c-463e-bccc-9f1801912f46", + "id": "7990aee3-1dfc-4111-bbe7-939500604f2b", "name": "Request successful", "originalRequest": { "url": { @@ -105807,7 +105807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00fc26de-59b3-4df2-a48c-5819f65052ff", + "id": "abf66f9c-3b96-40e8-ab82-5ebeee03756d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105846,12 +105846,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "317bda56-5a49-4608-b16b-5e23ac38892c", + "id": "f69b614e-8dd1-4744-a4a8-61e81b502412", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105895,7 +105895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a776b907-5b15-4cd5-8d97-b2c517357208", + "id": "33a46758-ed8e-473d-a86a-259bcf4b7f04", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105934,12 +105934,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8992a46c-7d0a-4491-8747-71c8b22997b5", + "id": "98d881ee-72c0-4429-a5bb-749252c253ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105983,7 +105983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcd780be-9951-4b38-8ac3-8e517d9f379e", + "id": "c0cad7d7-18e2-43e6-ab0f-113743ec64f1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106022,7 +106022,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -106039,7 +106039,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": "1a596c77-01bc-417b-9e9f-1f0897d8f49e", + "id": "1f558b55-31ed-4894-9d47-c252311da296", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -106068,7 +106068,7 @@ }, "response": [ { - "id": "98f1e96c-8da0-4440-a889-33b733908190", + "id": "be0770b0-00ae-40b5-87f6-ee878fe4431f", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -106111,7 +106111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "add2787e-5f9a-4db2-9b32-503dc701a948", + "id": "4b164099-2938-43e8-abf8-14b8c666c03f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106149,12 +106149,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dca21562-8ba6-48bb-ab6e-8c44e4297dde", + "id": "00b0b6cd-10db-4dc7-8d83-61f4e9c0155d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106197,7 +106197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b3c7fad-ce91-47dd-9a7f-7473817784a5", + "id": "9df25c8e-be7a-45d8-97b1-b03bc46b9996", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106235,12 +106235,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7710a697-e383-4317-af66-271aeb85f6bf", + "id": "95d2d735-7b04-4d1e-b17c-d6e0b1957355", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106283,7 +106283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bd142bd-d80c-4ea1-9ee0-245f7e82b2c2", + "id": "a447682d-d077-42e2-99b4-f5fce2d8f3e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106321,7 +106321,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -106332,7 +106332,7 @@ } }, { - "id": "1599b953-bf87-4405-ba9f-b300f6deed1d", + "id": "bdacdfc5-a9b4-4b9d-ab66-fd3c161d734a", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -106374,7 +106374,7 @@ }, "response": [ { - "id": "26fb9d65-cd08-4b82-a275-bbb3456edc47", + "id": "d1f283f3-932f-4c27-a086-1edd1bed5c7d", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -106430,7 +106430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e07abe6-73fe-4666-91e1-74e81f60bc0c", + "id": "14385c4f-e102-4764-adb0-11e04815daf8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106481,12 +106481,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c797c891-29f3-4432-9dfd-3a15e47e5c72", + "id": "029f2fb6-fd5b-4867-8b89-85c17cc40d5e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106542,7 +106542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "168b99dd-d87d-4a16-8096-ea8fb5cdf7e5", + "id": "feb70b6b-d496-42fc-bd87-afd4ff1fd3ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106593,12 +106593,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b84fcd3-79ad-4e22-97c4-c2c878faf6a9", + "id": "bfdbd088-4e65-4e33-8228-49d63af8aee1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106654,7 +106654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ebbbbd1-cae3-456c-b594-a4670d686f13", + "id": "ecb1782b-1ec3-4cce-8b5e-35aa0c803723", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106705,7 +106705,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -106716,7 +106716,7 @@ } }, { - "id": "5850b1d5-2f1a-42a6-858e-089db7254a5c", + "id": "bff67e53-c272-4c02-968c-5ee2263f1525", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -106758,7 +106758,7 @@ }, "response": [ { - "id": "e6d18f0b-00d0-4dff-be50-d840ef27ccc2", + "id": "19e02248-8ef7-4dfe-a1e3-20960b52e326", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -106814,7 +106814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86eb8e54-3c38-4fc7-aba2-9cb79a657e41", + "id": "5abc4906-bdd5-416e-9efb-5042bd531177", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106865,12 +106865,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ffeea643-f079-4a5e-9f14-28b78b949d4e", + "id": "b2b61074-2da6-4726-8bd1-49ff27d9bcd2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106926,7 +106926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e38fcca-a730-426d-9e76-70a5c5be5389", + "id": "8d7c9fdb-5f5b-4fb2-b3b3-1057f79ee232", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106977,12 +106977,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b67e32d5-d099-4fe6-be29-6ba95265eb88", + "id": "e82a8eb1-e63b-4cfe-b1f8-ac50ab31e34d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107038,7 +107038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8836c50a-fbcb-4605-801f-00b832fd9cd7", + "id": "95963341-1979-41af-b1ea-195ccb083064", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107089,7 +107089,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -107106,7 +107106,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 IdentityNow with [Update Password Dictionary](https://developer.sailpoint.com/idn/api/beta/update-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": "d32cc349-fa01-41bc-8254-23759f8392f9", + "id": "bf0df17c-0628-47f9-a5a6-cff8252d5001", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -107135,7 +107135,7 @@ }, "response": [ { - "id": "029b4b70-79e6-4975-a6d3-c4bcc007f9d3", + "id": "db788adf-5ce2-4bf1-83c3-eabb91981674", "name": "\nThe password dictionary file can contain lines that are:\n1. comment lines - the first character is '#', can be 128 Unicode codepoints in length, and are ignored during processing\n2. empty lines\n3. locale line - the first line that starts with \"locale=\" is considered to be locale line, the rest are treated as normal content lines\n4. line containing the password dictionary word - it must start with non-whitespace character and only non-whitespace characters are allowed;\n maximum length of the line is 128 Unicode codepoints\n\n\nPassword dictionary file may not contain more than 2,500 lines (not counting whitespace lines, comment lines and locale line).\n Password dict file must contain UTF-8 characters only.\n\n# Sample password text file\n\n```\n\n# Password dictionary small test file\n\nlocale=en_US\n\n# Password dictionary prohibited words\n\nqwerty\nabcd\naaaaa\npassword\nqazxsws\n\n```", "originalRequest": { "url": { @@ -107178,7 +107178,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f0f84a8a-ed01-4c92-925a-56c7524d3045", + "id": "fa79f423-d801-46c4-9d94-601b26a6d22e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107216,12 +107216,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6454cef-cea8-4da6-b429-1b91f2365e90", + "id": "b81054c3-3297-426f-867c-083dbf3f8fd0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107264,7 +107264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64e7edac-b130-4c67-84fe-71d07f1539ff", + "id": "417a1895-e3e7-4b9c-ab45-828d8caa67a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107302,12 +107302,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "02f913c6-e314-4408-84a6-be9d5599a081", + "id": "72ee2191-04a7-453e-ab47-39e782f085ec", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107345,12 +107345,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26c2853e-8b8b-499e-99e2-c9edb4beee87", + "id": "ed33208b-a4ea-4a6f-a9b3-aea61fdaf243", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107393,7 +107393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47ebf885-358d-4d55-b2ed-7620c7bd2b26", + "id": "5171391b-ca43-4e61-a2f0-f528d2956bdd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107431,7 +107431,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -107442,7 +107442,7 @@ } }, { - "id": "4f539ca6-406e-4823-ac6e-a94bf0faeb73", + "id": "58e0f523-e5aa-49af-bb42-4eb25899b006", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -107488,7 +107488,7 @@ }, "response": [ { - "id": "cec85a7e-2a6c-4c14-9a61-0f6aa8f564b7", + "id": "35889442-0918-4cc3-9ef2-24f1aec9a6b8", "name": "Successfully updated.", "originalRequest": { "url": { @@ -107538,7 +107538,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ac47ec6c-be70-48c8-9af3-bfe0c61761bc", + "id": "285a2dee-25a6-4377-9fe5-93147faa5007", "name": "Created.", "originalRequest": { "url": { @@ -107588,7 +107588,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f154dd8a-27b6-45b2-963d-c5ed762396cb", + "id": "9ca80e38-d3a2-4cc8-9854-3d2e81003520", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107643,12 +107643,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d41b62e-17a5-46a3-940c-3f6a28b6ff89", + "id": "37592dc0-e430-43aa-991b-097cc14f7596", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107708,7 +107708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5889c979-e358-480f-a0a2-36823d21f733", + "id": "c7082d70-ed19-45a8-9b97-f835eee7769f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107763,12 +107763,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b890a4d9-3cf6-469a-9748-71f926817e84", + "id": "e74823d4-87e6-49b2-82ba-6853ef6d1d3d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107823,12 +107823,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b6b846ab-5db5-42b8-a01f-5a3f9847ca50", + "id": "230687ad-63eb-4ffd-86b9-65f225b07b1c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107888,7 +107888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1b9af1a-c816-43bf-bcbe-8a134da54de9", + "id": "948c71bc-9469-439b-b135-beb981a26eca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107943,7 +107943,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -107960,7 +107960,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 IdentityNow, 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": "e3734399-d0cf-4379-8f3d-864e6049ec58", + "id": "a0c2f979-fed0-44c8-801f-5e028ede2ad5", "name": "Generate a digit token", "request": { "name": "Generate a digit token", @@ -108003,7 +108003,7 @@ }, "response": [ { - "id": "b9a7abea-d533-413a-8050-b390b87895be", + "id": "2a5dc777-0b24-4a37-b849-eebb6289438e", "name": "The digit token for password management.", "originalRequest": { "url": { @@ -108060,7 +108060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14923d8b-7e3f-4b52-bc5a-da2252338581", + "id": "1c197102-d75d-456d-bc5a-e9c5b5acafe6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108112,12 +108112,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1eedf419-d874-441d-9a34-36c4206386a1", + "id": "9cfb9b6f-f8e5-4019-88ed-ff7a414d3e02", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108169,12 +108169,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2c11ad3c-66c6-44df-b829-5069412cedfc", + "id": "8d158054-8298-4496-bf00-3fc100deb3a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108226,7 +108226,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -108237,7 +108237,7 @@ } }, { - "id": "deee79e0-8101-4843-b073-60abf3112914", + "id": "3045f0cc-aea4-4484-832f-de5624fd4b9d", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -108279,7 +108279,7 @@ }, "response": [ { - "id": "44fea659-f3b3-458c-87fa-4c41da08c217", + "id": "0ceefc98-5dcd-4c8d-b121-f522e1ac12ca", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -108335,7 +108335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44f32064-dbe8-4f31-85dd-d4fde8653bc4", + "id": "9723673f-14fa-433b-b173-3d8fcaa05b86", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108386,12 +108386,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70f8e04c-78c6-4422-aa4a-a03eabc91d2d", + "id": "d2bdf546-4b25-4795-83bb-86d5eac253dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108447,7 +108447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec35c0ca-ad9a-447c-8eb0-62251147bb2c", + "id": "4af07745-fe2a-4004-89ca-073cb83e1361", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108498,12 +108498,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2dab823f-c26d-44d5-9e9e-3ad231e337f4", + "id": "5359d55b-0ec1-4756-9b7d-e08f2af4fa59", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108559,7 +108559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "458db86d-63d5-4b41-a5a2-fbca7b110f53", + "id": "94807ffe-c54a-4606-9b14-baf6499f18ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108610,7 +108610,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -108621,7 +108621,7 @@ } }, { - "id": "0f13248c-57bc-49c2-8ed7-c13036437f88", + "id": "6ac76059-4705-4511-9dd4-969011673aa1", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -108663,7 +108663,7 @@ }, "response": [ { - "id": "6282f5ab-74fb-4c40-aab8-96dcd34c5c89", + "id": "301793ae-e0c1-4c6d-a046-176715c28729", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -108719,7 +108719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e049adc9-22cd-4cca-9552-92cba0aa56b6", + "id": "a9b3f758-aad9-4475-adb1-b713e8e0283e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108770,12 +108770,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5087d82b-434d-4137-b00a-1c00337d69bb", + "id": "60703206-60bd-4c43-92da-6dc6d4fa4439", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108831,7 +108831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de77e809-c09d-4049-b43e-be56c5b6309b", + "id": "1b612d13-bfdb-48cd-8856-3bbc2badacb9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108882,12 +108882,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c9965103-dc32-480a-b487-69767e4cb2eb", + "id": "7d69b65d-7ebb-4226-be9e-fa5e8ae3636c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108943,7 +108943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf990333-4f3e-4914-b487-2d73ee6b69e2", + "id": "b1e1ea99-35e0-4be7-a7ff-a762dac7efe5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108994,7 +108994,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -109005,7 +109005,7 @@ } }, { - "id": "e8550a25-d2d2-42d8-893e-21336f040ddd", + "id": "8889a65c-55cb-49f2-bad2-7045ab0a3bc2", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -109046,7 +109046,7 @@ }, "response": [ { - "id": "51f71f85-aaff-4052-abfc-dfa8fcc8c064", + "id": "c8fe2787-e303-4168-8b24-9f0699e827b8", "name": "Status of the password change request", "originalRequest": { "url": { @@ -109085,12 +109085,12 @@ "value": "application/json" } ], - "body": "{\n \"requestId\": \"\",\n \"state\": \"FINISHED\",\n \"errors\": [\n \"\",\n \"\"\n ],\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"requestId\": \"\",\n \"state\": \"IN_PROGRESS\",\n \"errors\": [\n \"\",\n \"\"\n ],\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f165230-3715-451d-b522-e555c9f568d4", + "id": "a89580e3-77a7-40cb-b7b3-77420f807380", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109129,12 +109129,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9b28fc9-36e3-462f-93de-a94cfd78f925", + "id": "556e4652-40c3-4f15-94d6-246d53795c39", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109178,7 +109178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "021e9a1e-3bc3-4f5e-be3b-e066acf45dd0", + "id": "f794922e-c3c7-4898-976a-3b7ef73e6af2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109217,12 +109217,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "07a33eea-17f8-44b9-8d6f-b381109e6a77", + "id": "cb5acb00-f5bb-4180-bfe7-012c70e800d6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -109261,12 +109261,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db99121d-f7dd-4732-acb7-7e94e87cb069", + "id": "b5e8fc10-58ea-4788-a639-f0a38cde3772", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109305,7 +109305,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -109322,7 +109322,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 IdentityNow:\n\n- At least two direct connect sources connected to IdentityNow 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 IdentityNow, 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 IdentityNow, 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": "f9239ea0-3cca-4dc7-bcdf-aecc77c3c4e5", + "id": "3c95b5d0-3a86-4ad2-8f02-cde7a24c60b0", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -109379,7 +109379,7 @@ }, "response": [ { - "id": "33c28d1c-b03a-4dae-93f7-6613f2807f50", + "id": "433be199-c263-4720-8ede-656e85f21921", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -109450,7 +109450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b30688a-66fb-474d-85ec-8a14ea585d50", + "id": "44edf79a-0c38-43c6-8bac-6588f4d8e7b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109516,12 +109516,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34a2be8a-cd3b-4291-a339-ad445b4f3e0e", + "id": "9b375d8c-d8ed-472e-bccc-54351464913e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109592,7 +109592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6388ebc5-f034-4d89-8c54-b9a177615c1e", + "id": "49b63b81-debd-4cf6-801f-e8952cba6bf6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109658,12 +109658,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b04b6a1-5413-4dd4-bbfe-edfe268a3c48", + "id": "876a87e8-a1f0-41cc-b7e8-12a1cef1a8ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109734,7 +109734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ed874f9-8568-49c0-b9f6-abd03463a9a3", + "id": "33343a3e-d946-4248-986a-c57478067668", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109800,7 +109800,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -109811,7 +109811,7 @@ } }, { - "id": "ad49ce89-bb26-41da-9fc7-ae62911aa03c", + "id": "e11b787b-4217-4d8d-89b8-bf317f276f4a", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -109853,7 +109853,7 @@ }, "response": [ { - "id": "e62ba417-1f67-4e49-ac39-736126ca373d", + "id": "0d8c3c79-5c08-48b0-a0b0-d070a5fe6531", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -109909,7 +109909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a93935ff-950b-4081-b0d5-37c2da42a625", + "id": "3bfb1287-99b2-403a-b034-d882e20921cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109960,12 +109960,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3277df89-2636-4156-85e0-f5da3fc76022", + "id": "d8c9a884-6f3a-428d-aace-1b297f8434c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110021,7 +110021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0703c310-0463-4b99-8607-2ab73552777c", + "id": "0babf31e-1b26-44d9-ae92-0904214df275", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110072,12 +110072,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ebd086c2-9903-4a71-8f5b-f6ad7d69fcc5", + "id": "d76cf424-7bbf-4f4e-b893-704a3c4205ba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110133,7 +110133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d4025e7-f084-4e67-b808-65df13d78512", + "id": "75a32954-ecfc-45c9-a8cc-cd6b31495ec6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110184,7 +110184,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -110195,7 +110195,7 @@ } }, { - "id": "40a65c47-8b10-40ca-8928-7870a8a0315d", + "id": "07d08a98-d075-4297-bd74-d597d03abd50", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -110236,7 +110236,7 @@ }, "response": [ { - "id": "dc07024e-c982-451a-85ca-6da53932ecd4", + "id": "daea7e60-c35c-456c-8e00-8981ff94b057", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -110280,7 +110280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e39f27e-dc41-41a6-b3bc-3d3baacb5e15", + "id": "b9adbc96-101a-4469-ada3-d5ee69c76a8e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110319,12 +110319,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "02d49297-286a-42e3-91ef-6337a8424ecd", + "id": "38a51a41-8c92-43bf-a027-38c7fa2169cc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110368,7 +110368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c467b5a-284d-4f69-b8c7-207127fcc3f5", + "id": "529c1bbe-57fe-4027-a8c0-a6193b1e6108", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110407,12 +110407,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b572a415-74ce-4a0f-a63e-2a9ff3bc2779", + "id": "7bb42eb9-e2ea-4377-8bf0-0c2d0454fbac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110451,12 +110451,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdfb2eac-e7fb-43ff-9662-24323189983a", + "id": "fc677f11-bc08-4217-9b7f-65b90e24e9c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110500,7 +110500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e25546a8-f2f4-4039-8f82-73a27a5975d4", + "id": "9c32a6f3-2b77-4f73-8e46-8eb41d0ff724", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110539,7 +110539,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -110550,7 +110550,7 @@ } }, { - "id": "92e19dff-34fd-421a-8202-a9d8a5e96c03", + "id": "951719f1-7fc9-48b2-8b44-b8984755d187", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -110604,7 +110604,7 @@ }, "response": [ { - "id": "45c41c90-3c6d-45a7-93d0-264550112a1d", + "id": "37f366f4-fc72-4fbb-a4ac-e5865e681463", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -110661,7 +110661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9466d784-e3c6-4d9f-93a2-939b3cce5450", + "id": "09dcdc1a-dd4a-4029-a597-45b7f6d2bbc0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110713,12 +110713,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "600ac169-7e1b-4ce5-a58b-baffea7a311c", + "id": "f88d7329-87f8-4dd5-8ed4-3fb4c14076d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110775,7 +110775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dcc1c7f-0b9a-44b3-91b4-54b085272460", + "id": "209f12b0-eaf8-4a0f-a21f-4b463e860c37", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110827,12 +110827,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e488d8b2-7857-41d1-ac39-8d466391b726", + "id": "ded8b92a-d6d5-4eb2-8a75-50e28063330a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110884,12 +110884,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29a5a0ee-171e-4202-a825-48416d39e48d", + "id": "cdbcab3f-6845-49f6-b03f-45c3b345df7b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110946,7 +110946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e73ff8b-1f02-42bc-84a7-02beefdc862b", + "id": "9480bec1-9afc-4859-89e4-beead718570d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110998,7 +110998,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -111009,7 +111009,7 @@ } }, { - "id": "797d07ca-17d9-4d9a-8fe2-7bbf3fd0325b", + "id": "6057f277-5a9f-4279-b830-709ddc88ddd7", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -111050,7 +111050,7 @@ }, "response": [ { - "id": "fb0923b1-b346-4402-b704-c7f99139fded", + "id": "1ce2042d-24b9-4f20-8d98-4c593df6a5f4", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -111084,7 +111084,7 @@ "_postman_previewlanguage": "text" }, { - "id": "04eb3e5f-0410-4811-86bb-e43b2ef38a24", + "id": "f469a1c0-131b-4f06-96fa-a27dac9785f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111123,12 +111123,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77bc1994-957e-4c0f-9521-be9583a95d82", + "id": "f5ac5bc4-f9af-438b-be8c-c7a22f36d0b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111172,7 +111172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8296f6c-04fa-4298-aae9-20580bca8918", + "id": "635754f5-56dc-464c-9930-aaf4ec7d06de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111211,12 +111211,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "95255405-46aa-4022-9c0a-ef53ca33ae39", + "id": "1eea55a2-fd2b-415b-8bf1-f01552d81fbf", "name": "Too Many Requests - Returned in response to too many requests in 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": "4e8ee428-46d0-4927-b80a-abac9572fde9", + "id": "fb54fa7c-6a13-4867-a4ee-2b46ed7a8fcf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111299,7 +111299,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -111316,7 +111316,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 IdentityNow.\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 IdentityNow organizations' integration security.\n\nIn IdentityNow, 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": "78978fc5-962c-4008-a04c-8b21176bd87d", + "id": "6baabed1-bc4d-4883-acbc-d6a629f56364", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -111364,7 +111364,7 @@ }, "response": [ { - "id": "350cfa66-f3fa-4e9c-8664-7aee54991254", + "id": "122fb7dd-b7b6-495d-a241-ec3b07f16a5d", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -111421,12 +111421,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\",\n \"lastUsed\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"owner\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\",\n \"lastUsed\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\",\n \"lastUsed\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"owner\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\",\n \"lastUsed\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "607ca1c5-fc33-49b8-bb2b-e090300adf53", + "id": "d40a93c1-60a6-4e7b-ba04-53f013e23547", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111483,12 +111483,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5160424c-2e47-40bd-9ebd-649725c969d8", + "id": "64b76dff-0b6e-47ab-bf54-2931c630f558", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111550,7 +111550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c00302f1-4cee-495d-87f9-bfd7c69e8bfd", + "id": "655d885b-1a0a-4e35-a9a6-9d7a703d01b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111607,12 +111607,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ecb9bd4d-4765-4aaf-bc37-47041edde920", + "id": "46ba3c65-ef4e-491b-a852-861afaf8d27e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111674,7 +111674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0895d47-6b79-40d0-b511-f943f1d922ff", + "id": "41a7d498-ecae-40e2-9de2-76eaa873c3f6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111731,7 +111731,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -111742,7 +111742,7 @@ } }, { - "id": "a2723638-ea2a-4d10-a734-82b110f347aa", + "id": "64a55d2e-1841-42b7-88b1-300147443789", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -111784,7 +111784,7 @@ }, "response": [ { - "id": "8e26c699-c2ac-42ec-8913-052bab8bcf5d", + "id": "a64de18f-fb52-4fc2-aa2a-c311ef1f29bf", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -111835,12 +111835,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"secret\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"secret\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6c457c04-78b7-4e59-a162-84e4db109e21", + "id": "889b4116-be14-4e37-8025-023abeaa5602", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111891,12 +111891,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d90e941-a38f-4d29-8a9f-e1c6842d6229", + "id": "e7c079c6-c901-46f9-b306-afaa23f7c9c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111952,7 +111952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "087623e5-8b9a-4c59-81cc-94c456fd2c05", + "id": "f0c7efe1-51e4-4d60-b549-f2c264bc1081", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112003,12 +112003,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b0077d3-7830-4988-bab6-4f458760be20", + "id": "867ebebc-3029-4246-8e62-45967a2d3b8a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112064,7 +112064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "742dba5b-556c-4f48-b781-8997b069d2b8", + "id": "c133660c-6de4-484d-aafe-ce23c5b2a438", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112115,7 +112115,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -112126,7 +112126,7 @@ } }, { - "id": "4ffb76ad-246d-4d87-bf9e-89d0ac3d2eb7", + "id": "6000d2ed-e276-4123-99bc-3f5bb47a44b2", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -112169,7 +112169,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112180,7 +112180,7 @@ }, "response": [ { - "id": "a01f6610-94ac-4663-94fb-58464bce4755", + "id": "2497bb89-9c2f-4397-95b5-bd4a017eb6da", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -112215,7 +112215,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112232,12 +112232,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\",\n \"lastUsed\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"owner\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\",\n \"lastUsed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "059475b8-7a58-4ae5-a188-d02e59fc409f", + "id": "f95f1776-654a-4412-aa65-487825bc329b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112272,7 +112272,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112289,12 +112289,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7958e54f-2401-42aa-a32b-ab0c3cc25cb1", + "id": "2ea37ad8-dd98-4d31-a67f-9ea8e2d67cd2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112329,7 +112329,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112351,7 +112351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3a223a1-1e25-4b99-8d94-92dbdce34fd2", + "id": "4cf16508-3eef-45e4-a266-219fb2052b00", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112386,7 +112386,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112403,12 +112403,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2ea97bed-b146-42b1-8623-137fade11b79", + "id": "b4e1b76b-c1c5-4cb8-baed-931b8093fa50", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -112443,7 +112443,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112460,12 +112460,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5552ee7d-1927-4e58-aabb-848899198ff1", + "id": "78fb7992-6266-4185-acc6-6c93faea1b4d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112500,7 +112500,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112522,7 +112522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32ef3f76-9e5e-472e-8c04-d350163477e7", + "id": "6ed84230-bd5a-429c-b811-4a542672ea1f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112557,7 +112557,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -112574,7 +112574,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -112585,7 +112585,7 @@ } }, { - "id": "8bd7485a-d08b-40d3-88e6-2c265e926ed0", + "id": "de28701d-e5ad-40cb-8b5b-9e54d9e2b8e3", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -112626,7 +112626,7 @@ }, "response": [ { - "id": "2ddfff71-27fa-42b2-8d53-7a7253dc1e1b", + "id": "3f1c5d42-fcb3-4693-97ce-a8f926709256", "name": "No content.", "originalRequest": { "url": { @@ -112660,7 +112660,7 @@ "_postman_previewlanguage": "text" }, { - "id": "757538cc-f584-496e-aab6-bc735d5fabef", + "id": "3a944230-7cb9-4d0b-9185-7f61dd6c2bc7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112699,12 +112699,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6be79b38-d40b-4be4-9e96-41584974a0e1", + "id": "f93fb5de-6663-4f4e-b878-4998e2c38f21", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112748,7 +112748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3786dbcd-a721-4511-9f36-fe611cc17f6e", + "id": "efb83b6c-37ad-4d5e-895d-e71678ab0bb1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112787,12 +112787,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15ee54e8-6f5d-43aa-8d13-0db432008c14", + "id": "e802ebea-6ddf-4698-8971-8516f1c5717f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -112831,12 +112831,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb099fdb-08ad-4a7a-b590-547153229d20", + "id": "246cce50-f9e1-44db-b9d4-e19fcde348a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112880,7 +112880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11f16845-e29b-48fb-933c-93685bb6610f", + "id": "83244680-ba1d-467e-885b-ade5d5277033", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112919,7 +112919,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -112936,7 +112936,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/idn/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": "7ea27477-eb34-4168-af65-0ab0384ad112", + "id": "758d6e95-ed50-49d2-8d52-77a25fefbb67", "name": "Get Public Identity Config", "request": { "name": "Get Public Identity Config", @@ -112965,7 +112965,7 @@ }, "response": [ { - "id": "82af49d3-5976-4b6e-94ff-7e99c65d298d", + "id": "3f07e17c-f269-4560-b704-3ae930123eeb", "name": "Request succeeded.", "originalRequest": { "url": { @@ -113003,12 +113003,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "body": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e0b5d1b-bc25-4cbe-ab3a-91b3fcbb141d", + "id": "a158acad-873e-4e37-a77d-626647b87cfe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113046,12 +113046,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa30cbfe-28cf-4f73-9e04-37b93e86221a", + "id": "bb6fd645-f011-4356-8859-bf79d0fef535", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113094,7 +113094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39200071-90e1-443a-8c12-73717e67bebb", + "id": "7eff3c3c-744b-4157-81cf-1446488b1980", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113132,12 +113132,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3158f3d2-e87c-46d6-b7e3-a88054819dad", + "id": "52e1f479-8aa3-4905-83c5-509c639b68a9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113180,7 +113180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bef5359b-3ce3-4915-a82e-7e50cce48f38", + "id": "bd38e840-6b4e-4d6f-a93b-2f818191ce6e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113218,7 +113218,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -113229,7 +113229,7 @@ } }, { - "id": "d5b16bf7-02a7-4eba-915a-e8ba760531c7", + "id": "3a9e5dca-5f1a-40ec-8b22-3d972c7b948b", "name": "Update Public Identity Config", "request": { "name": "Update Public Identity Config", @@ -113260,7 +113260,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113271,7 +113271,7 @@ }, "response": [ { - "id": "ea70e468-a9c4-46b7-a123-078bbde57a2a", + "id": "a33dbf38-4443-402a-8c4e-2513dad48925", "name": "Request succeeded.", "originalRequest": { "url": { @@ -113305,7 +113305,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113322,12 +113322,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "body": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7a7cd4a1-cfa5-42a2-8fa1-1070b5b1fe58", + "id": "bf14e980-be02-4e6f-84ae-eb987ec14df4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113361,7 +113361,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113378,12 +113378,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b907ea70-aee4-4bbe-ab1b-c96e19cdfbd3", + "id": "af1696b6-49b7-470c-a8c6-69be031b1fc4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113417,7 +113417,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113439,7 +113439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eef96d86-4836-4bd6-a846-2491581575ba", + "id": "416b2bd3-e4aa-4b6e-9378-fab7eaeffda0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113473,7 +113473,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113490,12 +113490,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdb22231-1c7f-464b-a3a3-e908bf9508d2", + "id": "cc8452b1-7d8d-461f-930c-38966a633c9c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113529,7 +113529,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113551,7 +113551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bce9602b-c1ed-4ed8-b28d-bc65fbf0b596", + "id": "611dd42b-8abc-4f6c-8a5f-bed65d0fd0eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113585,7 +113585,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", + "raw": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -113602,7 +113602,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -113619,7 +113619,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/idn/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": "7f45b1a9-7c48-4aff-9ca9-8c01d03c0113", + "id": "d35c9b32-f4b1-4478-ba46-4fa0f1a9ee1b", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -113669,7 +113669,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,AVAILABLE" + "value": "AVAILABLE,ASSIGNED" }, { "disabled": true, @@ -113730,7 +113730,7 @@ }, "response": [ { - "id": "b3f4a343-f9f1-49d6-83f7-72fde21e61c8", + "id": "34d1cc06-5ba6-4ac7-b59d-50fbadb8dc53", "name": "List of requestable objects", "originalRequest": { "url": { @@ -113775,7 +113775,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,AVAILABLE" + "value": "AVAILABLE,ASSIGNED" }, { "disabled": true, @@ -113850,12 +113850,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"requestStatus\": \"PENDING\",\n \"identityRequestId\": \"\",\n \"ownerRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"requestCommentsRequired\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"requestStatus\": \"ASSIGNED\",\n \"identityRequestId\": \"\",\n \"ownerRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"requestCommentsRequired\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE\",\n \"requestStatus\": \"AVAILABLE\",\n \"identityRequestId\": \"\",\n \"ownerRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"requestCommentsRequired\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"type\": \"ROLE\",\n \"requestStatus\": \"ASSIGNED\",\n \"identityRequestId\": \"\",\n \"ownerRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"requestCommentsRequired\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46014ffb-3fa9-4e92-807a-66d962be7ed8", + "id": "ec57d6a5-0a16-4d1a-a769-fbb21a60dd61", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113900,7 +113900,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,AVAILABLE" + "value": "AVAILABLE,ASSIGNED" }, { "disabled": true, @@ -113975,12 +113975,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "02dd38aa-98c5-4282-81b6-0970f1866e36", + "id": "2f8ada43-2bf4-4661-8341-5f721630bd78", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114025,7 +114025,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,AVAILABLE" + "value": "AVAILABLE,ASSIGNED" }, { "disabled": true, @@ -114105,7 +114105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c18920a-9bfa-40c3-90bf-336cd117342a", + "id": "f29553fc-70aa-4c9d-b40f-5362da5118e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114150,7 +114150,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,AVAILABLE" + "value": "AVAILABLE,ASSIGNED" }, { "disabled": true, @@ -114225,12 +114225,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d6ee061-ea32-41f6-9904-bfba69b77231", + "id": "721d2f83-01e8-4a01-a3a0-f75ccc4164ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114275,7 +114275,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,AVAILABLE" + "value": "AVAILABLE,ASSIGNED" }, { "disabled": true, @@ -114355,7 +114355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa1bb98a-fb7c-4c10-8321-f914b744c4be", + "id": "8913719c-d135-4817-b644-2091e0edcfe6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114400,7 +114400,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,AVAILABLE" + "value": "AVAILABLE,ASSIGNED" }, { "disabled": true, @@ -114475,7 +114475,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -114492,7 +114492,7 @@ "description": "", "item": [ { - "id": "c23a6715-2cb9-47f5-bde3-7f14bc107212", + "id": "5228dfe7-983e-4536-b4e1-398a4040d043", "name": "A request to generate insights for roles", "request": { "name": "A request to generate insights for roles", @@ -114522,7 +114522,7 @@ }, "response": [ { - "id": "221684ad-2acf-4b8a-a3a3-3436be679f81", + "id": "19fb21d9-f692-413a-8c5f-47c85fba9f4c", "name": "Submitted a role insights generation request", "originalRequest": { "url": { @@ -114561,12 +114561,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"createdDate\": \"\",\n \"lastGenerated\": \"\",\n \"numberOfUpdates\": \"\",\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"status\": \"COMPLETED\"\n}", + "body": "{\n \"id\": \"\",\n \"createdDate\": \"\",\n \"lastGenerated\": \"\",\n \"numberOfUpdates\": \"\",\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"status\": \"CREATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5bc5ae10-3f88-4bc6-9dd1-96f9c6f5be1a", + "id": "4452b448-0318-44f7-9b77-014f96fd4a52", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114605,12 +114605,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "279c06a5-d190-414c-90ab-d396c9a869b3", + "id": "ad8e711a-5d87-47e0-9377-bff83a7636fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114654,7 +114654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0af4f568-eb31-4c9d-b0e2-0ee9307a17f5", + "id": "f2c89c66-9690-4005-90b4-e17432d58f3a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114693,12 +114693,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37bc56c6-8c82-4354-b7a0-e829bd9c7349", + "id": "d13abd1d-a181-4b57-b02c-323ebca1b4e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114737,7 +114737,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -114748,7 +114748,7 @@ } }, { - "id": "90e55920-68ba-4c82-9659-7fb53286f6ec", + "id": "de992709-d112-4477-8be5-63f0e2e86d97", "name": "Returns the metadata for a request in order to generate insights for roles.", "request": { "name": "Returns the metadata for a request in order to generate insights for roles.", @@ -114790,7 +114790,7 @@ }, "response": [ { - "id": "a81e2cf5-c2c3-4e02-9210-0bfb4b92949a", + "id": "3c96d1b5-67f2-414f-ba60-b156f57efdac", "name": "Succeeded. Returns details of an earlier role insights request.", "originalRequest": { "url": { @@ -114830,12 +114830,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"createdDate\": \"\",\n \"lastGenerated\": \"\",\n \"numberOfUpdates\": \"\",\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"status\": \"COMPLETED\"\n}", + "body": "{\n \"id\": \"\",\n \"createdDate\": \"\",\n \"lastGenerated\": \"\",\n \"numberOfUpdates\": \"\",\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"status\": \"CREATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "005a8987-d241-4c73-8102-135f27f76d86", + "id": "63e0ad6d-287e-4a9d-a683-cc3226bb582f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114875,12 +114875,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2cfa35e-2324-4b25-aaf8-95ba4fd122a2", + "id": "4b26b8ee-3a3a-4984-920a-cd8b32f35332", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114925,7 +114925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dcae9e0-851d-4ea0-8995-fda887a939a8", + "id": "57b94f12-d79c-45e5-915e-59df6dae9ee1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114965,12 +114965,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7720e7cd-bff5-4e71-8725-05f8fe89cb94", + "id": "e1a63a6e-c860-4971-9793-ffaff1100e47", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115010,7 +115010,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -115021,7 +115021,7 @@ } }, { - "id": "73e51f96-d7a2-44e7-b144-ba8010245122", + "id": "f864d535-e146-43cf-aade-8ddeadfbab41", "name": "Get role insights summary information", "request": { "name": "Get role insights summary information", @@ -115051,7 +115051,7 @@ }, "response": [ { - "id": "852606fd-e75c-4cbe-b7e6-db609ad535e9", + "id": "3dbfc03f-28a1-4d5a-ad4b-82cc2d14d918", "name": "Succeeded. Returns high level counts.", "originalRequest": { "url": { @@ -115095,7 +115095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59aa395c-a8ec-4e4e-9e37-adac8b34dee7", + "id": "7772d4b6-7473-40e1-a59d-5e640a56e149", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115134,12 +115134,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eb69469e-53b7-4a52-8592-da5a57825c01", + "id": "7a9d4921-5f3b-47ff-b0df-5d2c10ef44d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115183,7 +115183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e17d5e2d-f1ab-4f9a-bf39-1ee17c19e9fb", + "id": "160ee1c3-95a9-42f3-8ddb-a34193d191bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115222,12 +115222,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "42363cb9-b4a0-430d-821b-787fd25ab80d", + "id": "07aa0cd4-004d-49df-baa6-123c99698cc4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115266,7 +115266,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -115277,7 +115277,7 @@ } }, { - "id": "3dc20409-4473-41ba-8277-e95c9f109876", + "id": "e7cea9c1-bcc4-429d-9e52-248c2ba4b11b", "name": "Get role insights", "request": { "name": "Get role insights", @@ -115352,7 +115352,7 @@ }, "response": [ { - "id": "c7e2d41d-2590-414c-9657-8eee6846c47e", + "id": "2ff5ff2a-4829-4b72-aae0-568e7f7a88e5", "name": "Succeeded. Returns a list of roles with information about insights for each role.", "originalRequest": { "url": { @@ -115441,7 +115441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee36b09b-9266-4aa5-9a49-b35215ed669e", + "id": "145550f1-9bda-4831-90fc-6f4193cf86fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115525,12 +115525,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67a51a12-5659-45e1-bce5-b82bc7519d33", + "id": "155144be-ecbe-4a60-8a67-92d4677be5d8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115619,7 +115619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7a7f9aa-8031-4025-b20d-c8bc60f2797e", + "id": "76b2bee8-1632-4360-942f-5fc6d3d7edd6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115703,12 +115703,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f37c8116-6c49-4163-8bf4-c4e18a19e012", + "id": "88f8a7b2-126a-4e5c-bfb6-b6c14cd5fa2b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115792,7 +115792,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -115803,7 +115803,7 @@ } }, { - "id": "240d9517-886d-4251-a027-746a3d7a2c40", + "id": "5a0a1ff4-59f9-4c41-8e4f-27325024b7cd", "name": "Get a single role insight", "request": { "name": "Get a single role insight", @@ -115844,7 +115844,7 @@ }, "response": [ { - "id": "820ca3f6-66a4-4a9c-9615-1f69110717df", + "id": "76cc962a-3987-4c1d-964b-496d2ff1bff7", "name": "Succeeded. Returns information about insights for a single role.", "originalRequest": { "url": { @@ -115888,7 +115888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "764feb56-6f05-4925-8ad9-5f3bc7b5750f", + "id": "a72ee765-27c9-4751-b50f-4c9df4ddd4e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115927,12 +115927,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f76db37-48ae-4e01-86ff-2f198da55a6d", + "id": "998c22ca-d477-4923-b459-34634ce10f38", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115976,7 +115976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fde0c369-6758-4a7a-a880-f51786e6ac02", + "id": "d8cb742d-93f8-460c-a3dc-024e0db7ad49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116015,12 +116015,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "94bdaf1c-e6a7-4cba-ac00-f837221039a2", + "id": "5c272d6b-4479-409e-8943-65dbc228f498", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116059,7 +116059,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -116070,7 +116070,7 @@ } }, { - "id": "54e2e59b-2071-4b12-b415-d5193b769b30", + "id": "cf153c5a-25ae-4e6f-8ca2-a9269fbc3b49", "name": "Get entitlement insights for a role", "request": { "name": "Get entitlement insights for a role", @@ -116131,7 +116131,7 @@ }, "response": [ { - "id": "fda25b0f-9dda-4155-959b-7fe48c7ecada", + "id": "506ad1dd-3b26-417b-8c24-037d8b6c4578", "name": "Succeeded. Returns a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -116195,7 +116195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21474a35-bb47-45ed-8c35-4c96c15145b4", + "id": "eaa74460-11ec-4aef-8340-9e6e126a312e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116254,12 +116254,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bafac1e3-43dd-4e27-9ae6-872d3995378b", + "id": "cedc694c-a8e5-41ed-bae9-35e42acbc289", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116323,7 +116323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2c0d61b-c13a-424f-94cb-a0faff5f8f29", + "id": "9910112a-e9b3-4d3b-bc51-f87134956f2d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116382,12 +116382,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0041cb23-1cf3-47ef-8a00-13417705021a", + "id": "6bf162bb-bbb4-4a92-8764-23577dc98e2e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116446,7 +116446,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -116457,7 +116457,7 @@ } }, { - "id": "0fd10fa1-b866-47b2-aa7a-11a821797683", + "id": "34b72469-3c4c-48d3-bad0-bb10ff04fa14", "name": "Download entitlement insights for a role", "request": { "name": "Download entitlement insights for a role", @@ -116519,7 +116519,7 @@ }, "response": [ { - "id": "fcd325a6-683b-4f2b-a311-9f80ef9c529d", + "id": "fdff24fb-6765-4d70-9418-f4b10ea1854d", "name": "Succeeded. Returns a csv file containing a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -116584,7 +116584,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e1178bb8-1037-454e-8c24-75f7039a5073", + "id": "d953dbb8-224e-43bd-9b8f-55126a3cdf89", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116644,12 +116644,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8c436f27-33f5-4423-a8f5-788c53a1be76", + "id": "32f97d71-73bb-47dd-9c91-42a8fab3f09b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116714,7 +116714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "757cfeb4-1ebf-4cce-adb6-7623c971cfe0", + "id": "f1ac7c0b-4325-4be4-b9a9-098414c3e645", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116774,12 +116774,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34965625-716f-41d3-b94a-f85fefbab046", + "id": "4d47e0bc-1772-4025-b505-575342af18a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116839,7 +116839,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -116850,7 +116850,7 @@ } }, { - "id": "f5f3c86c-73a7-4e08-9c42-31ffc60735e4", + "id": "afd7682b-ca6c-4066-be87-2deff7f5411c", "name": "Get current entitlement for a role", "request": { "name": "Get current entitlement for a role", @@ -116902,7 +116902,7 @@ }, "response": [ { - "id": "597f3316-9277-4e03-938a-0440c424a480", + "id": "cc766212-babc-4e60-871c-7e888ec217da", "name": "Succeeded. Returns a list of current or pre-existing entitlements for a role.", "originalRequest": { "url": { @@ -116957,7 +116957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61aeb8f0-78c0-4332-a3ec-e994c13a21c0", + "id": "71adb773-5caf-4578-b991-fce7c7b26cfd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117007,12 +117007,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5ea6763-e55e-4dc1-95db-d0115b691ce5", + "id": "1d901711-5112-42b0-905a-255a2791cf74", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117067,7 +117067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69d43cce-5e6c-4098-b6b1-5a2e373a3ca6", + "id": "d4b6ab79-e867-40d5-b3fb-53656b724458", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117117,12 +117117,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df8475fb-4ee0-4618-9bfd-ce741d376a3e", + "id": "0d003ade-8f7a-48bc-9a7e-5b2919656b7b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117172,7 +117172,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -117183,7 +117183,7 @@ } }, { - "id": "653abc86-079b-49cd-a33f-17a2a02d28f1", + "id": "31e39b67-baf2-41a6-8e0a-d6bd72ed2346", "name": "Get identities for a suggested entitlement (for a role)", "request": { "name": "Get identities for a suggested entitlement (for a role)", @@ -117292,7 +117292,7 @@ }, "response": [ { - "id": "836a8feb-4bc3-4f9a-b267-22f5460826e5", + "id": "380c3a9b-2199-4b73-9496-9cdbf497aa48", "name": "Succeeded. Returns a list of identities with or without the entitlement.", "originalRequest": { "url": { @@ -117389,12 +117389,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"sed_a2\": \"\",\n \"ut_0\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"reprehenderit_b\": \"\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"laborum_66\": \"\",\n \"aute__\": \"\",\n \"commodo_150\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"tempor8af\": \"\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b325ac0f-6b6c-4356-86cb-2e671d75ec54", + "id": "d7f0f5c8-dace-4ef6-b35e-543593544237", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117491,12 +117491,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93c9acf1-be1b-4af5-aaf2-11a225e45ff6", + "id": "8d789303-1219-4018-88ea-d28bc4c7c6ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117598,7 +117598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caf7ea66-156f-4aaa-9e5d-11b101652c4b", + "id": "6c9d7088-f79e-48ed-92ce-0863d6e8e93c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117695,12 +117695,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a6dec6b-0074-4d1d-a338-8f5d4fc23980", + "id": "34f97557-de29-4a14-89da-adc01fdbad83", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117797,7 +117797,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -117814,7 +117814,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 IdentityNow.\nIdentityNow 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 IdentityNow.\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 IdentityNow 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 IdentityNow, 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 IdentityNow 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/provisioning/roles.html) for more information about roles.\n", "item": [ { - "id": "61355e66-6c02-480f-97d5-db16a53f9bcb", + "id": "4a79dcbc-6707-40d6-9d71-1a8967628838", "name": "List Roles", "request": { "name": "List Roles", @@ -117916,7 +117916,7 @@ }, "response": [ { - "id": "5c9c023e-3026-4a1e-8e26-760ff329500f", + "id": "7f6b9caa-e7a7-46e8-9e03-7bd02f1cca10", "name": "List of Roles", "originalRequest": { "url": { @@ -118027,12 +118027,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"dolor_a\": 21401629\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n },\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"et_d4\": \"aliqua deserunt incididunt in reprehenderit\",\n \"fugiat_e73\": true,\n \"labore_5\": \"minim irure aliqua adipisicing\",\n \"mollit_9\": -68981651.10233551\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"consequatbc\": false,\n \"sunt_2\": true\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n },\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"aliqua55_\": -3490718.232236564,\n \"dolor4\": \"in est proident\",\n \"Excepteur_a22\": \"Duis velit ex\",\n \"in_1\": \"D\"\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2677414-df44-4d9d-83cc-b64177614a87", + "id": "bbdddbc4-fe4a-4bf7-b37d-b6066be1e3a5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118143,12 +118143,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f2ed177-6f54-44cd-9c08-a63b3b587f52", + "id": "8c4c567c-18b0-4e64-b850-ab18266256b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118264,7 +118264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30053277-b5d1-4f5b-8350-1ac87b02aa56", + "id": "38b0b253-09d6-4ffe-ba5a-b571fda8fae3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118375,12 +118375,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d2fe1cd5-d432-4757-a309-923e598efb35", + "id": "24d86785-4a98-4903-a84a-545405ef56ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118496,7 +118496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bee66bf-5cb2-49fc-b0e9-0180b4e5c1ae", + "id": "93deedf7-7dfd-4445-bc50-8245e8c5b6eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118607,7 +118607,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -118618,7 +118618,7 @@ } }, { - "id": "2aeb8e59-7b22-4a48-9f84-881430dd9ad2", + "id": "f8110055-02ee-4a48-96c5-36559d504f64", "name": "Create a Role", "request": { "name": "Create a Role", @@ -118649,7 +118649,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"quis_9f\": 56679671,\n \"deserunt_97\": false,\n \"nostrud2\": true\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"minim0\": -9894679\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118660,7 +118660,7 @@ }, "response": [ { - "id": "a64edb0f-44ae-43d7-a3fe-7f7e2b99f69f", + "id": "aa81bf71-75cc-46c4-bf67-bcdd9f97a22c", "name": "Role created", "originalRequest": { "url": { @@ -118694,7 +118694,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"quis_9f\": 56679671,\n \"deserunt_97\": false,\n \"nostrud2\": true\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"minim0\": -9894679\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118711,12 +118711,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"quis_9f\": 56679671,\n \"deserunt_97\": false,\n \"nostrud2\": true\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"minim0\": -9894679\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3811c8b1-c0ab-48ff-aa3b-fd22dc09b419", + "id": "dd2a97ca-f450-45f9-9d8f-47c28c07b5ed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118750,7 +118750,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"quis_9f\": 56679671,\n \"deserunt_97\": false,\n \"nostrud2\": true\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"minim0\": -9894679\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118767,12 +118767,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ead97b6-3112-495b-93af-a2a53635cff4", + "id": "71812eed-b5dd-454f-aee2-6af2e8cd4133", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118806,7 +118806,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"quis_9f\": 56679671,\n \"deserunt_97\": false,\n \"nostrud2\": true\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"minim0\": -9894679\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118828,7 +118828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "456673cf-0676-42d2-b30c-639fc0bfa882", + "id": "3e71d60a-19b1-48ce-9390-3f2eb7ddddaa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118862,7 +118862,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"quis_9f\": 56679671,\n \"deserunt_97\": false,\n \"nostrud2\": true\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"minim0\": -9894679\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118879,12 +118879,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7c954310-9a3d-445f-a6b8-a424f73bf73e", + "id": "ed9682b5-70a1-4f91-a621-39a4460bec40", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118918,7 +118918,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"quis_9f\": 56679671,\n \"deserunt_97\": false,\n \"nostrud2\": true\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"minim0\": -9894679\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118940,7 +118940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a36e0980-4110-4291-8499-37cdda12acba", + "id": "6c81856d-77f9-42a6-a9e6-47fe22b3c09b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118974,7 +118974,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"quis_9f\": 56679671,\n \"deserunt_97\": false,\n \"nostrud2\": true\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"minim0\": -9894679\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118991,7 +118991,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -119002,7 +119002,7 @@ } }, { - "id": "2deff407-c0ac-425b-8a92-ad2b97867007", + "id": "ba611fca-bace-46a2-ae5e-735abef596cc", "name": "Get a Role", "request": { "name": "Get a Role", @@ -119043,7 +119043,7 @@ }, "response": [ { - "id": "c1699a18-bb1b-45ec-aa1d-7fc9b26cf73f", + "id": "e955a6a4-1ab5-4fcf-8f65-2b044d80e2eb", "name": "List of all Roles", "originalRequest": { "url": { @@ -119082,12 +119082,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"quis_9f\": 56679671,\n \"deserunt_97\": false,\n \"nostrud2\": true\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"minim0\": -9894679\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2c55fc11-049a-4db6-9288-005088a55fb9", + "id": "c1771da0-cc8e-4d15-b099-5aa00fb7d89e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119126,12 +119126,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ac84ad1f-b4bf-437d-b206-d8fa7a94f2cf", + "id": "99bfb8eb-4e1c-464a-80e9-3c526c5eeb72", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119175,7 +119175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2596a187-d081-4d17-8261-69585736ac09", + "id": "eeeb8320-99f5-4d0d-b1fd-78fc91799c0e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119214,12 +119214,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5ddca4f-f1e6-4d86-b91a-cd32b62ce2a1", + "id": "9dfe2799-9360-4356-a3cc-980bfd676f16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119263,7 +119263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6d862e1-9f74-40b0-bee8-c75a91d48c4a", + "id": "4e8c35b8-97db-4409-89c5-15beab119a61", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119302,7 +119302,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -119313,7 +119313,7 @@ } }, { - "id": "8c4c2153-db13-4f5c-acdb-882929b395dc", + "id": "d044ceb9-995c-41cb-81cb-f93cade40647", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -119356,7 +119356,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -119367,7 +119367,7 @@ }, "response": [ { - "id": "789f18d3-5ec9-4c15-b319-7ab1ab57b320", + "id": "a88821ad-97b7-489d-97d2-b90543fdbd9d", "name": "Responds with the Role as updated.", "originalRequest": { "url": { @@ -119402,7 +119402,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -119419,12 +119419,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"quis_9f\": 56679671,\n \"deserunt_97\": false,\n \"nostrud2\": true\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"accessProfiles\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"\"\n }\n ],\n \"membership\": {\n \"type\": \"STANDARD\",\n \"criteria\": {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"minim0\": -9894679\n },\n \"enabled\": false,\n \"requestable\": false,\n \"accessRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "367c760d-073f-4bb0-b2ba-c147594ee4be", + "id": "7e43c0f5-c5cc-48cb-8dc4-584f21c6cd05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119459,7 +119459,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -119476,12 +119476,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "078eece5-d0e2-478e-acef-82e26248c3a7", + "id": "f96b8567-b895-438e-8dbf-720d4b8910be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119516,7 +119516,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -119538,7 +119538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2baa6cc-e1b5-41a9-8640-3fef1fdae583", + "id": "e5a24ed7-8ce9-4570-a18c-7461b7b4f276", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119573,7 +119573,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -119590,12 +119590,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "434f315d-f2bf-4dda-b615-b8b71c8f17ee", + "id": "bcf9879a-ddfc-4f50-835e-08ae2441e38b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119630,7 +119630,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -119652,7 +119652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f7b42c4-abd4-441a-8c8c-165882d3009b", + "id": "7dd21ac5-49f4-4179-b2d6-0cddfd152bbb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119687,7 +119687,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -119704,7 +119704,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -119715,7 +119715,7 @@ } }, { - "id": "e254931e-0996-46bf-a012-c0319a4f8fdd", + "id": "6d8fe182-681b-4188-96a8-c25ec0b88c44", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -119756,7 +119756,7 @@ }, "response": [ { - "id": "dfc7b9af-3bd1-4f03-9cbd-4341492b48b2", + "id": "e3defba9-52ae-4f73-831d-fef1effecaef", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -119790,7 +119790,7 @@ "_postman_previewlanguage": "text" }, { - "id": "69b113f1-747c-4442-853d-c2cdad1fcae2", + "id": "22180957-ada0-431b-b3f9-c7b629a6cc82", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119829,12 +119829,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f08d038-3d25-4dd8-82e1-77dc48d3e4d5", + "id": "b18df0f2-4afc-4fdc-ab9c-c62bdfd3a5e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119878,7 +119878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24f9e96d-6e70-4e1f-973c-39ad0ec49d11", + "id": "d8870ff6-e7c6-40c5-ae55-088f7b7418a8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119917,12 +119917,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bd9493b0-cd8c-4a74-8352-8bca081d2165", + "id": "5b8b9b2e-4716-4fbe-a825-a6684cf2b3d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119966,7 +119966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b53bfa69-775d-4999-b8e5-8f0a9918d3ab", + "id": "7f4d3d7e-08a7-4f8c-a3c0-c6f3eaf41373", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120005,7 +120005,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -120016,7 +120016,7 @@ } }, { - "id": "b0526766-ea7a-424e-9294-ea827b57a159", + "id": "551977eb-812d-43ec-aa8e-98bd5bad63ec", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -120059,7 +120059,7 @@ }, "response": [ { - "id": "7edac44a-d8b8-4af5-bc1d-70dcdb7a2d28", + "id": "03e663d0-0667-4d09-a15c-b610d175f72f", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -120111,12 +120111,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n}", + "body": "{\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "999771d9-e5d9-4d13-a896-6195721ef78a", + "id": "bc521a3a-dfdf-495a-9b9b-4a0183b1659f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120168,12 +120168,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8653a8be-42c6-4978-81dd-e4b473c55e07", + "id": "4b6d0ca4-ede8-46aa-9400-f8797e0a4df2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120230,7 +120230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b323c3c2-e0ed-4cfd-bd74-bc6855e59a18", + "id": "5b3baccf-09dd-4331-b698-086762a6e49b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120282,12 +120282,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b8297fa0-b0f8-4ceb-b116-00f197f04971", + "id": "87a5a6dc-4f19-4d4a-890b-511f319a516a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120344,7 +120344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5ba83e7-9540-4cd4-9118-f55d7405aefc", + "id": "23b1c162-059a-4c0f-a95d-ce381fe0be3a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120396,7 +120396,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -120407,7 +120407,7 @@ } }, { - "id": "4fd9de2e-711a-4d63-80c8-da4c89f79633", + "id": "876c84bc-c099-49e8-be91-9e4aedd2c62e", "name": "Identities assigned a Role", "request": { "name": "Identities assigned a Role", @@ -120492,7 +120492,7 @@ }, "response": [ { - "id": "b296d7c6-3772-4bc7-9c8c-4c06174dad54", + "id": "c4a9a08a-c8d5-46eb-a04b-5a279295e79b", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -120583,7 +120583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67fe3e4b-2f51-42e1-905d-827880d1bf46", + "id": "668871d4-6b1a-4d65-8345-db8868b7d1b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120669,12 +120669,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e1202eea-5078-4932-9732-fda1a70efb51", + "id": "1138cdef-4829-45d8-953a-69bc4997e099", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120765,7 +120765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b82aea43-7885-4d5f-9ba0-c72757cd64c4", + "id": "2f82becd-532f-45e5-acfc-21362f2675a5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120851,12 +120851,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c0560d9b-bef1-48bf-9f71-a9b2e72a6e46", + "id": "c988298e-8764-4832-97f3-cbb4c8aa0377", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120947,7 +120947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f727a87-a00d-48d7-b5e6-19978a850a9d", + "id": "0c206cdf-86db-4c9e-8598-c6ad5ac5f41e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121033,7 +121033,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -121050,7 +121050,7 @@ "description": "", "item": [ { - "id": "f73818be-b332-4f1a-9265-a2aa47eb6700", + "id": "5ce120b8-10bf-4777-b394-e0386c35ba64", "name": "Configure/create extended search attributes in IdentityNow.", "request": { "name": "Configure/create extended search attributes in IdentityNow.", @@ -121093,7 +121093,7 @@ }, "response": [ { - "id": "ecddf160-1a9b-46b8-95df-adca91b0656b", + "id": "76c50609-fc54-45e8-a9fa-73ddf78632b9", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -121150,7 +121150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96d34da4-c438-4571-b07e-3eee8ba499d8", + "id": "6513fdbd-e670-40ad-8596-5e2ea9d0706f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121202,12 +121202,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f78324dc-7b06-4c35-bf66-0a9e64dd0bc8", + "id": "91355723-939a-4c88-9bf8-f6df121757ea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121264,7 +121264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76c9b701-6353-43b6-b021-02f886235b81", + "id": "93ffaed8-3729-4ea7-9e4f-75cf0190867d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121316,12 +121316,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74b48619-c175-48d1-b3b4-bc2d1883a682", + "id": "f0ffcf8b-5cf7-426f-b7ee-a1d7553f5fb5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121373,12 +121373,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b7106d18-08d9-431d-9020-b490584ed612", + "id": "958a5af3-c5df-4f05-878b-703dd6f4b749", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121435,7 +121435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39e20d1c-e7ba-45f0-94aa-587c40519bf2", + "id": "17c73814-a340-4f56-92b6-22cf5e972feb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121487,7 +121487,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -121498,7 +121498,7 @@ } }, { - "id": "84114a18-efde-4942-a22c-4f7285246387", + "id": "0f399fd8-7a5d-4cb4-8562-a060c4def15c", "name": "Retrieve a list of extended search attributes in IdentityNow.", "request": { "name": "Retrieve a list of extended search attributes in IdentityNow.", @@ -121528,7 +121528,7 @@ }, "response": [ { - "id": "1ecde550-93a3-462b-b2e2-613a2b892cb3", + "id": "fa8302af-a20c-4102-8547-abd1c2914fde", "name": "List of attribute configurations in IdentityNow.", "originalRequest": { "url": { @@ -121572,7 +121572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "747e933d-f2e8-4dad-9d2f-17d25def6674", + "id": "08e8116f-aa16-46a1-bffc-3bfb4d1da11f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121616,7 +121616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d8f0a0b-c952-481c-bd9d-cbbfb4f8e7f4", + "id": "150c92d2-ec07-4837-859c-8b6e37279871", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121655,12 +121655,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "20c24706-7d7d-4b27-9072-334494546164", + "id": "14022c16-e947-493d-a023-2637884ff710", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121704,7 +121704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef6373ce-9a01-47a8-b95d-344af0a44784", + "id": "60170b0c-b937-47f9-9d65-b95b012e6cd5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121743,7 +121743,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -121754,7 +121754,7 @@ } }, { - "id": "d8a9ee63-155f-4ceb-8408-7ae51e64a1af", + "id": "e39b25c0-69f3-4601-be28-b74512c90470", "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.", @@ -121796,7 +121796,7 @@ }, "response": [ { - "id": "1dc6d798-4b64-462b-8ff9-74085048f9f8", + "id": "f067542f-ec6f-4021-b0b3-b718868fea32", "name": "Specific attribute configuration in IdentityNow.", "originalRequest": { "url": { @@ -121841,7 +121841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82aa8c73-dfc2-41a0-a678-9dbd2b1b0946", + "id": "7febb68a-3500-4537-be68-5861954c39a8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -121876,7 +121876,7 @@ "_postman_previewlanguage": "text" }, { - "id": "58ec6750-f004-429b-b98c-aedc2be5dafd", + "id": "62c5109b-6680-4a44-b5dc-e42bc4168837", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121921,7 +121921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc1ea5e2-0960-4d21-b715-e2909993c487", + "id": "9e2e0d6c-4655-429c-8ba3-9ce5af295c68", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121961,12 +121961,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eb02d406-24b7-41b4-9385-b3c9d72a22f4", + "id": "83e0b659-a2d6-409e-9979-df9402a86a15", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122006,12 +122006,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0182aa4d-3cc6-4f6c-9b37-6de5b8c44a6d", + "id": "9b9ba4a7-91d3-41e5-aee2-d8b75cd8c39c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122056,7 +122056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43ad0386-8d09-4448-9ce0-0162e4638e26", + "id": "f2416962-f0bc-48a6-9249-401ed22b0888", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122096,7 +122096,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -122107,7 +122107,7 @@ } }, { - "id": "4edda777-9b03-4514-ac99-5f2b170b5723", + "id": "ab69f7b5-0a00-4239-9867-07c219acd0e3", "name": "Delete an extended search attribute in IdentityNow.", "request": { "name": "Delete an extended search attribute in IdentityNow.", @@ -122149,7 +122149,7 @@ }, "response": [ { - "id": "4b92d154-62c2-46dd-bec3-ebbc9b7fc876", + "id": "88f5dabb-cbc0-4c86-bc9d-1af769ded24f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -122184,7 +122184,7 @@ "_postman_previewlanguage": "text" }, { - "id": "292e1a7d-3fd1-4600-8860-04d343db75b4", + "id": "0c0e39c9-7a03-4dc1-9478-b364937ae1e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122229,7 +122229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b6b5738-c9bc-4677-8d99-3e57730ab92b", + "id": "64acc59a-b60f-408a-a537-e91231757cb1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122269,12 +122269,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "60fca512-dc49-485d-944e-3234f1bcc8ef", + "id": "e81d1530-1636-4360-8cfc-84f0eeebadf9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122314,12 +122314,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "abceb49c-6fc4-429d-8ad2-478086934ea7", + "id": "51e98dd5-931b-49c4-beb2-e52caa1896b2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122364,7 +122364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc72108d-2223-44a1-83a0-26919f0e1c4c", + "id": "67eec914-d02b-4021-96e4-4399fd6db739", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122404,7 +122404,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -122415,7 +122415,7 @@ } }, { - "id": "ef54730b-8079-479e-b3b5-2ef7524cb068", + "id": "ef0414bd-ddd5-4736-bb4f-c4dbd0f9c355", "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.", @@ -122459,7 +122459,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -122470,7 +122470,7 @@ }, "response": [ { - "id": "7b062e23-5b96-47d6-885c-0e5aec5a66d0", + "id": "93011a69-67c4-4baf-b709-06894f16cfb7", "name": "Responds with the Search Attribute Configuration as updated.", "originalRequest": { "url": { @@ -122506,7 +122506,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -122528,7 +122528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9c01339-5771-4622-88ef-2b70fcca6683", + "id": "f4acc188-ea80-4dd7-bdd9-65d80b34d50f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122564,7 +122564,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -122581,12 +122581,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6c51dc93-cb76-4c2c-a98e-573846acb6df", + "id": "4d4d5c96-68fa-4533-aa69-46727ae8f1c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122622,7 +122622,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -122644,7 +122644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dbe7b65-060b-4a16-b588-bcae445be6c3", + "id": "16955a03-99c2-4914-893e-03e38dbb6536", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122680,7 +122680,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -122697,12 +122697,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ac7042fd-f9d3-4caa-81ee-4341d0b76fb2", + "id": "531a98bf-73c1-450d-b0db-937dd3ca1f5c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122738,7 +122738,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -122755,12 +122755,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eef46cbd-3de7-4860-9321-c48da81c333f", + "id": "effc028c-4375-4631-94f4-304e8da90850", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122796,7 +122796,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -122818,7 +122818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc0078a1-4e8e-483c-b9c9-ef46d4695ef5", + "id": "02ca3376-ae2c-4df7-9dca-addac3c41364", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122854,7 +122854,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -122871,7 +122871,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -122888,7 +122888,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 IdentityNow, 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 IdentityNow. \n", "item": [ { - "id": "7f77c394-46fe-4d92-9933-05047090c6a5", + "id": "4cfd5c85-f48c-4233-a970-da2662fcf65b", "name": "Create Segment", "request": { "name": "Create Segment", @@ -122919,7 +122919,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -122930,7 +122930,7 @@ }, "response": [ { - "id": "d3ee0588-6133-4e17-a2ef-5c723ca724b8", + "id": "a31e311a-03b1-41c0-9644-aedccfeb3ca2", "name": "Segment created", "originalRequest": { "url": { @@ -122964,7 +122964,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -122981,12 +122981,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "24495052-bd6d-41a0-bfde-e2706bf309bc", + "id": "1ea71bb4-bf57-4972-bbdd-40ac367a5ea3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123020,7 +123020,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -123037,12 +123037,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2caeb75-1953-492f-9443-1ab719ecf1e8", + "id": "60de2b1e-5712-49ac-8130-e34b829966b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123076,7 +123076,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -123098,7 +123098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9974d3d7-43ee-4cbf-a88c-635589d5d2de", + "id": "a01c4ea4-fff4-4f2b-923a-dac92c0fec12", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123132,7 +123132,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -123149,12 +123149,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd4793f6-accf-4c33-8e43-f589e4b4b97b", + "id": "4afddf79-1f80-4540-a509-9d4d3a781b9b", "name": "Too Many Requests - Returned in response to too many requests in 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 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -123210,7 +123210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfed1dda-9233-4a1c-bd79-f1f9b1e9f0ed", + "id": "8b3fe365-8a59-4fc3-a440-4d423ad0ec2f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123244,7 +123244,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -123261,7 +123261,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -123272,7 +123272,7 @@ } }, { - "id": "edc6f6ed-fccd-40e2-a12f-5acdda6e63cd", + "id": "c682e23e-64f5-4d31-83fc-1917d32d72e5", "name": "List Segments", "request": { "name": "List Segments", @@ -123329,7 +123329,7 @@ }, "response": [ { - "id": "b161f309-c895-4dfc-803d-e065eaf2c549", + "id": "22b03622-16fa-4a43-b72a-0bfdb04c5761", "name": "List of all segments", "originalRequest": { "url": { @@ -123395,12 +123395,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7dabd14d-0d11-4c4a-a663-f96d2079a81e", + "id": "3f0e6377-c782-4403-a5bf-0a8b3f8aeea1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123466,12 +123466,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1461744-a2c2-4ff1-b4cc-c08e52253c88", + "id": "7c9aeb2e-b5a9-44c0-8693-59c07f140672", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123542,7 +123542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef95b5b0-03ce-47c2-a797-2d9fecef50be", + "id": "7dad2192-5f6a-40c8-b7bf-427abc875cdd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123608,12 +123608,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0cb28edb-40cc-4a95-b3bd-39d6bd8c50f3", + "id": "511f9862-0b37-4098-93d0-895fd8287c97", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123684,7 +123684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "651b4c96-df67-4838-9f06-f4d2e266d860", + "id": "888cfffc-9e78-480c-93e6-07d4f96e29d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123750,7 +123750,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -123761,7 +123761,7 @@ } }, { - "id": "d82174f7-d1cb-46aa-b6d4-7aeb7c22813a", + "id": "b03f11c9-8e50-4497-8b75-6e197acba3e5", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -123802,7 +123802,7 @@ }, "response": [ { - "id": "42c15b8d-8952-474b-a130-5add7fd247db", + "id": "48e8ce9e-024e-4432-b119-3b75d8facbf8", "name": "Segment", "originalRequest": { "url": { @@ -123841,12 +123841,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fc33396-5880-4b86-8947-0845d3fb748a", + "id": "9e805c2f-85b8-4755-9e39-bad86152009e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123885,12 +123885,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f76a4b1c-3d55-4598-a448-f794c306b988", + "id": "895819a4-4c8e-410d-aae1-408f5293a25b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123934,7 +123934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a22974fa-4fd0-4cdf-81ce-7ef7f119642a", + "id": "48449576-314a-4be6-ab99-648155f7ad1e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123973,12 +123973,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b9d64f1-090c-416d-a99f-0bd9fb51c594", + "id": "27384c15-4e80-4fed-b6c0-1d5b8c2f8fce", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124017,12 +124017,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ede92731-4c82-4395-8630-eb59e8f9b67b", + "id": "6699b7fb-2f6e-42d7-b599-6fe3c0d7f847", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124066,7 +124066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "259f8d0f-7b40-4ac7-9425-dd5629193067", + "id": "8be143a4-1be0-4e2a-8df1-ff57c1aa220a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124105,7 +124105,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -124116,7 +124116,7 @@ } }, { - "id": "fe47e36b-fa7f-433a-af93-c957e835bbf7", + "id": "31efce11-11a2-4edd-a031-16557a165141", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -124157,7 +124157,7 @@ }, "response": [ { - "id": "dc0541c9-6889-444d-bd56-66d5658faf48", + "id": "0f097e06-5bc4-4eb8-b610-1c3760ea321e", "name": "No content.", "originalRequest": { "url": { @@ -124191,7 +124191,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5f77b52b-aaa1-4461-8a65-c4a4ce7b48d4", + "id": "e363dc46-297e-497b-a580-49d4756a64d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124230,12 +124230,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12dd0851-5572-4a98-a6a2-c5efdc54c55d", + "id": "7d467928-7930-47eb-b376-ceb597a59281", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124279,7 +124279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5ed8eed-32e9-47ea-acae-e1113a8ed26b", + "id": "f9abdf4b-b978-4396-827a-97f76a0a9216", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124318,12 +124318,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c81c4050-338a-4307-ba7b-05f994d68e49", + "id": "9c60245c-a9bc-448b-a54e-606761883c33", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124362,12 +124362,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7c258b33-5ad0-404f-85a3-d4d44cd6973c", + "id": "e587ba9a-9636-4734-8f10-08e4e447b3b9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124411,7 +124411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d19c3bdc-1c63-44ab-9e14-5a543fe4bd5c", + "id": "9d3743b6-82b8-4ccb-a713-04f7a8b52f5c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124450,7 +124450,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -124461,7 +124461,7 @@ } }, { - "id": "bd3c21e1-360c-4696-9cdc-4a2c1e696f6e", + "id": "54638a4e-1cf6-4346-9318-972c89d949ab", "name": "Update Segment", "request": { "name": "Update Segment", @@ -124515,7 +124515,7 @@ }, "response": [ { - "id": "80a210ff-39c7-43e3-a9c3-d275bbee33ce", + "id": "5a24355e-536c-4d43-b26d-db8522dde7b1", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -124567,12 +124567,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"AND\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"visibilityCriteria\": {\n \"expression\": {\n \"operator\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": {\n \"type\": \"\",\n \"value\": \"\"\n },\n \"children\": [\n {\n \"type\": \"\",\n \"value\": \"\"\n },\n {\n \"type\": \"\",\n \"value\": \"\"\n }\n ]\n }\n },\n \"active\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aac84a82-c0f2-40f8-92e8-61f1ba527953", + "id": "03ba2709-3dcd-4dbc-895d-fb85a89fd147", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124624,12 +124624,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c4fa85e-b52e-4e34-ba36-2d552fabad72", + "id": "795aebf5-a4a8-4f04-84c7-0ca778b14962", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124686,7 +124686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cce1852-ed59-4940-960b-f1fdd79881fb", + "id": "228604b3-182c-4d24-acb8-d023329fd422", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124738,12 +124738,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a33be78-2e7f-43da-9877-5f24a3433fad", + "id": "5fb64e02-1175-4234-bf46-377f75e17256", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124795,12 +124795,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ac5c80d0-52e9-45ce-8300-b2b2ceeffa48", + "id": "d42652c1-c852-4e02-9775-8e53fa2d3864", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124857,7 +124857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fbdf070-0087-4ba1-9af7-447192145505", + "id": "88805d70-2313-4963-bab7-c5f667f48d47", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124909,7 +124909,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -124926,7 +124926,7 @@ "description": "Use this API to build an integration between IdentityNow and a service desk ITSM (IT service management) solution.\nOnce an administrator builds this integration between IdentityNow and a service desk, users can use IdentityNow to raise and track tickets that are synchronized between IdentityNow and the service desk.\n\nIn IdentityNow, 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 IdentityNow.\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": "f0f0cfb8-f9c3-4dee-ab27-aedaa42cf964", + "id": "19ce9a45-c79e-4a6e-94fb-0092a042b281", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -125001,7 +125001,7 @@ }, "response": [ { - "id": "aa798187-e9b3-45df-bd09-78c49439e3cb", + "id": "eafb4a17-961e-4da0-8d3d-f02c249fe2f6", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -125085,12 +125085,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"attributes\": {\n \"sitc59\": 8701056.976713866\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n {\n \"attributes\": {\n \"ut_62e\": -34837425\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n]", + "body": "[\n {\n \"attributes\": {\n \"nisi_78f\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n {\n \"attributes\": {\n \"minim2e\": false,\n \"ad_cf\": \"si\",\n \"mollit_bde\": true\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d491fe9-5c3a-4b6d-9f90-bda204d2f8b6", + "id": "f5f929e9-f112-4b95-8a7c-51c8abacdff8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125174,12 +125174,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "14b339d8-50c3-47a8-8c51-0165aadd75be", + "id": "0f43f78f-2a1f-4c2b-9df4-3ba6acabf6bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125268,7 +125268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e57d8b2-944a-46fb-a38c-61a171c5ddc6", + "id": "86f382ba-2b43-4f23-b21a-5799254470bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125352,12 +125352,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6a0e580b-7325-4912-9fe9-c99bd0aeb342", + "id": "cf5d2d38-ee77-4d1e-b196-fd269002b06e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125441,12 +125441,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b48c9d1a-e005-44f0-8f94-4dfc1e0ecf64", + "id": "a2681f6d-f457-41af-b2f3-95d6b9a1c984", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125535,7 +125535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db19cd5a-1887-4c99-b0af-978f1c61b1bf", + "id": "5ca736d1-bb7a-4dac-9b31-604b41e473da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125619,7 +125619,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -125630,7 +125630,7 @@ } }, { - "id": "12590a0d-44b2-4e6b-bcd6-595d92df532f", + "id": "15514d39-59e8-4cce-ae22-8806134d73d5", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -125661,7 +125661,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -125672,7 +125672,7 @@ }, "response": [ { - "id": "43483b90-f90c-4a58-863f-bfe8fdc21a6c", + "id": "fab91fa8-3854-4566-9a52-4757c1c62544", "name": "details of the created integration", "originalRequest": { "url": { @@ -125706,7 +125706,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -125723,12 +125723,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "body": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3466acc-da97-4a0d-a53b-e2c2f7d90320", + "id": "94ca346e-724c-4bf5-92ad-87d56170a956", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125762,7 +125762,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -125779,12 +125779,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d1607f2-6c8a-4661-86d5-7f9cb0620746", + "id": "06c63307-18f5-4ed2-943a-6a3a52c54e6e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125818,7 +125818,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -125840,7 +125840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17bc4913-4729-42f7-8a65-2b31d91e7d23", + "id": "8d25917e-70d4-4998-b1d3-7aff2cc0a8f5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125874,7 +125874,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -125891,12 +125891,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "33db3440-bada-44b2-ba6d-5341830e48d5", + "id": "0d54a546-3a8c-4543-9cda-7aaa5cdff503", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125930,7 +125930,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -125947,12 +125947,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "96b18d79-d483-480d-adad-e0f00b7c0719", + "id": "c7b29f02-cd23-47b7-a419-9323aed68479", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125986,7 +125986,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -126008,7 +126008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "131fc377-e1b1-4768-9550-82159c09be31", + "id": "e3d369d6-bae9-4c01-8662-777cdae58e6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126042,7 +126042,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -126059,7 +126059,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -126070,7 +126070,7 @@ } }, { - "id": "ad0fd7ea-9864-4f44-9c88-6563ec56d678", + "id": "b5baf5e8-080b-404a-945b-e9138014a03f", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -126111,7 +126111,7 @@ }, "response": [ { - "id": "b0f8d61d-9fec-4257-80e7-12c4ae5f8b9f", + "id": "2ec565c7-719e-4404-9be8-4af4f16cbed8", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -126150,12 +126150,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "body": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3dbca870-b18f-44a6-916d-03853f2353b5", + "id": "05ab1784-59f8-40ed-80d7-50c897b7faad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126194,12 +126194,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0fb14110-0de8-4dd1-92e7-fe50da41aca6", + "id": "6308e1ef-6452-4880-bc3b-069ed55eb85d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126243,7 +126243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5899aa5-6cf0-4835-bdf4-9f20f996dad6", + "id": "7837be7d-96ee-4bcf-aaa7-3e4ccb9776ad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126282,12 +126282,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e3918d0-9727-4986-9887-0778f39ddfdc", + "id": "91326797-dc85-43e7-b621-d2a86b7a2f0d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126326,12 +126326,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2995da17-692c-4c82-b1b8-04229346c85d", + "id": "c8bddd58-46dc-4dcb-8380-b764e1cb9c84", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126375,7 +126375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "076787d2-5b5e-41d3-83d9-54c4b32921f3", + "id": "5a2ad2ac-ab7a-436c-b9eb-277df7488e02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126414,7 +126414,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -126425,7 +126425,7 @@ } }, { - "id": "9870d67f-69a4-47b2-a54d-3c66992f43a6", + "id": "c9b99663-29a1-439b-881d-49bfd5119db1", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -126468,7 +126468,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -126479,7 +126479,7 @@ }, "response": [ { - "id": "5199cd3f-15d7-4d08-a775-519dc52d655a", + "id": "1eed08af-77fb-4027-8dae-8b3b50a02845", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -126514,7 +126514,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -126531,12 +126531,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "body": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bd97322d-a5f2-41cd-8f47-f3825e55f4c1", + "id": "2cb86585-07fe-4b61-bcb7-ef1b528248b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126571,7 +126571,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -126588,12 +126588,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9239e351-c3db-43da-ae23-b96bfe8b050b", + "id": "f383fd2d-87b0-4bb8-92aa-35da1f02b04c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126628,7 +126628,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -126650,7 +126650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7820e3d3-6c5d-4552-bafd-69a563b7e117", + "id": "1877f277-78a4-4d94-909c-3f7c33ab87e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126685,7 +126685,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -126702,12 +126702,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f892e06-6505-4641-92dd-24295fa114af", + "id": "691a335a-0987-417a-97c6-7998258bdc48", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126742,7 +126742,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -126759,12 +126759,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "19751fcf-2006-4a8b-84a8-c742983783c4", + "id": "13b72b40-48e5-48ee-9e87-e95b8fb8ec28", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126799,7 +126799,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -126821,7 +126821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dffb29cb-6ee0-4914-9bc9-ae6442221139", + "id": "93835579-f27b-41fd-ae60-34fa791de896", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126856,7 +126856,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "raw": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -126873,7 +126873,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -126884,7 +126884,7 @@ } }, { - "id": "362fc289-2b9e-4a0c-a1e7-38d7324c240c", + "id": "2b49ece5-865b-468d-856d-41b956e6fd72", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -126925,7 +126925,7 @@ }, "response": [ { - "id": "9ce584da-c0fb-4efa-8b73-b70b7b699f90", + "id": "331b6c9d-6392-4fbc-8484-96ed045bc299", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -126959,7 +126959,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fcc3f082-94df-412d-9b54-0a737a5ead8c", + "id": "6cd57113-04bc-4b93-8db6-4f114d9e9b8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126998,12 +126998,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7db793a9-9244-4e4f-bee2-079e9e77df9d", + "id": "74a1b7b1-21fe-4970-87fb-9627c78c9269", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127047,7 +127047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e85fdd02-26b9-4289-95fd-8e9c50a6f646", + "id": "ffc5036f-dd2e-4645-bea5-15e325867670", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127086,12 +127086,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9363fe45-8fb4-4f02-86b5-df85ad1c9133", + "id": "c37fde28-7cb4-4cb1-97ed-0dfad3e23af7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127130,12 +127130,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "626f1b08-747e-4784-924e-6a1159ba2d09", + "id": "2d7f3e1a-7f96-48b9-a491-42554686aeef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127179,7 +127179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd44cb9c-a2ff-461f-a335-d3e3747efce5", + "id": "f6098fc1-d0ef-423e-9503-a240c66c8647", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127218,7 +127218,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -127229,7 +127229,7 @@ } }, { - "id": "8069c424-d8ae-44c7-9c3d-ae763e62f496", + "id": "e79c2ba1-6437-4e73-a38c-59bafbf04556", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -127272,7 +127272,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -127283,7 +127283,7 @@ }, "response": [ { - "id": "704e3c1c-3c39-47b6-9ba0-13d581cd9ecb", + "id": "f52e4881-3153-4ddd-8bca-82faacaaaf70", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -127318,7 +127318,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -127335,12 +127335,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"qui65\": 10765635.91215147\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", + "body": "{\n \"attributes\": {\n \"commodo__\": \"ex reprehenderit aliqua in\",\n \"amet2\": 5352502,\n \"in_51a\": \"laborum fugiat ex sit\",\n \"Excepteur_c\": false\n },\n \"description\": \"\",\n \"name\": \"\",\n \"type\": \"ServiceNowSDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"ownerRef\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"clusterRef\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"cluster\": \"\",\n \"managedSources\": [\n \"\",\n \"\"\n ],\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e492fba-251b-4185-8b02-aaf2584151d7", + "id": "cb519282-8f1b-454c-98eb-1dd6e9997372", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127375,7 +127375,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -127392,12 +127392,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64f5fdc0-d785-4e0f-bf73-95e2d6991256", + "id": "53ef7742-97bd-4313-be49-df42315a44c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127432,7 +127432,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -127454,7 +127454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fef04cb-7848-4b1f-b14a-56b142498092", + "id": "9acc9110-9d02-4df6-bcca-67bb480fbe5d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127489,7 +127489,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -127506,12 +127506,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "03720908-44fd-42ce-a147-831f290cf7bf", + "id": "752c4132-fab2-4635-8758-659df1c89376", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127546,7 +127546,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -127563,12 +127563,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3f13cde-5c4e-4aa2-9504-fbfbb2edc2b0", + "id": "3b2f56c2-9496-4d3e-99b8-693d64ec83f1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127603,7 +127603,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -127625,7 +127625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4b6869f-8d19-4e2f-accc-ab5fe5b96d4d", + "id": "6b56b372-e9d5-4344-bbd5-227d827f4c0b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127660,7 +127660,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -127677,7 +127677,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -127688,7 +127688,7 @@ } }, { - "id": "ee6b9da6-0f75-4f2a-9179-1bc761a546e2", + "id": "5175e3a0-8f44-457e-a0d6-042cd08f77fe", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -127718,7 +127718,7 @@ }, "response": [ { - "id": "9c75a095-28ad-4a3b-ab30-2139eab80bfd", + "id": "6f349fb2-459f-4fef-baf9-82d026e509f2", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -127762,7 +127762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "985f366e-8b12-45aa-bb5c-a495423f85c9", + "id": "6bb9a11d-4ce3-41f1-85fd-c2696a3ca9bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127801,12 +127801,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eea1e693-393a-4014-9fe2-ee9ef91d37d8", + "id": "1e3f0485-7311-4e29-b61d-7e07b55150dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127850,7 +127850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5eb46d94-781b-4ef0-b264-1043854646a9", + "id": "78c0b932-0c10-4769-a011-0bac0b88861a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127889,12 +127889,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77e4ef0b-6d49-4172-9f6b-57739bed2f55", + "id": "0f361dc7-c85d-4566-b81d-db031bfa2c0a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127933,12 +127933,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a96b8c3e-6adf-4da1-88e7-184d6b152f5a", + "id": "34ac5422-d64b-46eb-b57b-2467dc258a6a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127982,7 +127982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "773a425d-80b5-4800-a479-52f929bbf717", + "id": "999d63fa-cadb-4e35-b9e6-142c96a5a9c8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128021,7 +128021,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -128032,7 +128032,7 @@ } }, { - "id": "e18f73e4-771f-496d-a02b-ab701521a458", + "id": "9c3552cf-6ed6-4eb0-a720-d566b94d1f30", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -128074,7 +128074,7 @@ }, "response": [ { - "id": "5c4182f1-d088-4992-bf7a-d79a22279485", + "id": "558d18dc-6e43-4007-b584-7051ac22ddf8", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -128114,12 +128114,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"aliqua_55\": false\n },\n \"name\": \"\",\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"type\": \"Web Service SDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"attributes\": {\n \"exercitation_\": 28320529.802425742\n },\n \"name\": \"\",\n \"provisioningConfig\": {\n \"universalManager\": \"\",\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\"\n },\n \"noProvisioningRequests\": \"\",\n \"provisioningRequestExpiration\": \"\"\n },\n \"type\": \"Web Service SDIM\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "53b182a9-e418-4e66-96d1-9869d9e2551a", + "id": "a983596c-251a-4db7-a9bf-8b7fc71098eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128159,12 +128159,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "631fb40d-7ec5-488a-9253-8e4f45e85160", + "id": "e445f15e-0c52-4eee-9f74-ba849ff2b375", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128209,7 +128209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b39562e1-d560-4a7f-9e78-99c7541c90f7", + "id": "e7e1e952-1165-4590-85dc-38b609d1ae1b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128249,12 +128249,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "013995e3-2663-4070-ae67-8b60e25648f9", + "id": "0ed83d57-bf9e-4f95-8e26-3cf921d18570", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -128294,12 +128294,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5f6a9bf-1269-4b9d-b13c-38bad1865a47", + "id": "0b78ad1f-c4b0-4746-940b-8356d41c3ea1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128344,7 +128344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b09c5120-2d5e-4f80-9358-3b5ef72f49b1", + "id": "f8e5894a-6a4c-4324-bee8-a222dedc4a88", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128384,7 +128384,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -128395,7 +128395,7 @@ } }, { - "id": "b9eb8f80-fcac-4388-9b8a-ffacbcac9b59", + "id": "612f2ae4-7833-4069-a411-318822c2f502", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -128425,7 +128425,7 @@ }, "response": [ { - "id": "4347f2f3-12ed-4788-b949-1a3b4a5c8808", + "id": "5cdf2fe2-2420-423b-84ea-cbf520497a6f", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -128469,7 +128469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01c34cb0-040e-4fbe-ad5f-5d8bbfd61814", + "id": "06f4ddeb-9616-43f1-9625-35aaf2e852af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128508,12 +128508,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae2cc360-f0a6-445b-b530-f0756528e15e", + "id": "347413f3-a909-43e8-93df-8aff6faded18", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128557,7 +128557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2151408-dd7e-4063-8fe9-6344ef7b1371", + "id": "742da4da-277f-40a0-bfd0-ea34afb5476c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128596,12 +128596,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "174c06b9-0e8a-444e-b7f3-65da2f9484cf", + "id": "36580351-03d0-46b8-a929-1b86d36e2e45", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -128640,12 +128640,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85f2d434-421d-4a6f-aa01-b483aa3e3ffc", + "id": "93c6776b-b541-4e72-880d-b25322cdf399", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128689,7 +128689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef24cd47-ad83-4e54-9c3f-d81cfeff9983", + "id": "396c8d25-deba-4ebc-9260-24de4f5c79c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128728,7 +128728,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -128739,7 +128739,7 @@ } }, { - "id": "1ff84a7a-228e-4aea-88c1-db23311d9ee5", + "id": "b0f7e213-a3ff-4c8e-9507-da8ebb122128", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -128782,7 +128782,7 @@ }, "response": [ { - "id": "115e72d0-6934-42f7-a9a9-4efed6d56f63", + "id": "0a1eaaf7-b6f6-413b-b7e8-c2a25357bfd9", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -128839,7 +128839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a15783ef-1f22-43c9-8321-04f356c40ae3", + "id": "974a0a7b-5fcc-485f-b11d-bf683e13dddd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128891,12 +128891,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "010538f0-6b3c-4b86-9819-15f7f16e5cfe", + "id": "56e07856-dfbb-4a63-bb76-4fdd548812f1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128953,7 +128953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "831b4691-4f5f-4b1e-8c5a-16004a7aa4ad", + "id": "e5d6afba-0ee1-45e5-8ad3-fcbfe454a4b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129005,12 +129005,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e11638f2-a9fd-41a8-bffd-d52b1001562d", + "id": "a89ac575-f740-41c6-aacf-efb63d00f60f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129062,12 +129062,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b54d45b5-30c9-4ccc-9d20-a21948f8cded", + "id": "81f545e9-48f2-4614-ad54-c1d42945bf64", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129124,7 +129124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7710d297-bf38-492d-a1fb-f96586a8a4e6", + "id": "5399fc41-74e8-45ef-b351-7eb2a4eb4f58", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129176,7 +129176,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -129193,7 +129193,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 IdentityNow, 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 IdentityNow, 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": "8f5be75b-da30-433f-ab1e-a46c4b5a350f", + "id": "17619e7a-4af5-413a-a973-af71db5213fe", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -129224,7 +129224,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -129235,7 +129235,7 @@ }, "response": [ { - "id": "cf86e1e6-35d8-4e08-aabd-fbdb8f9bb0cd", + "id": "0e5b008b-782b-41ef-900c-1d543a4ed764", "name": "SOD policy created", "originalRequest": { "url": { @@ -129269,7 +129269,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -129286,12 +129286,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "42738ca9-12a5-4922-9af6-aa068c0e471b", + "id": "e4978448-b2ae-494b-bee9-34a567419469", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129325,7 +129325,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -129342,12 +129342,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cccd0578-a522-4142-b3e9-ac698c85f7cb", + "id": "fc4a6d4a-08af-406a-9235-05e9f730245c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129381,7 +129381,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -129403,7 +129403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "296f3ea8-84ad-4a88-b0b1-268820d4dc12", + "id": "bd576374-182d-42ce-a6d0-fcef49e03d1c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129437,7 +129437,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -129454,12 +129454,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b478a32-e93e-4813-be98-cd1c5228cb89", + "id": "077459a3-19b2-482a-ab14-0fbaa4315b52", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129493,7 +129493,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -129515,7 +129515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce614601-68e7-405d-9888-558dae6d1ee1", + "id": "1946a909-8050-4f50-a5cf-1571d0a8ff52", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129549,7 +129549,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -129566,7 +129566,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -129577,7 +129577,7 @@ } }, { - "id": "30bac2c6-ddca-4a0e-97df-b99e02b8308b", + "id": "f7d4fa8a-5be8-473c-8ce4-fd2b28d639f6", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -129643,7 +129643,7 @@ }, "response": [ { - "id": "d85fff4f-c9a3-4e4b-8384-1f743ba92856", + "id": "666bcfae-93d0-4891-9bcd-af5783bcb116", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -129718,12 +129718,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"NOT_ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"STATIC\",\n \"ownerRef\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": \"MANAGER\",\n \"ownerRef\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "012eee5f-8847-4925-b5e0-f74f3f771dba", + "id": "28455379-956a-47ed-9cf1-6c23a57831a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129798,12 +129798,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7d5af3b7-be3d-4e18-80fa-174e61a6d24c", + "id": "5a0514d3-fb41-40b4-b472-80b92453909b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129883,7 +129883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42319b1d-3a71-485c-9b9b-29378d4135c1", + "id": "24dcbd5d-244e-4af9-b8b6-e9e9bc992b7b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129958,12 +129958,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9581e4b8-d9fb-4c6e-b94c-6b968ad98fbe", + "id": "37229603-6350-4510-b52c-16e6931723ea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130043,7 +130043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce24f33b-201a-48e8-bddc-f4416a24b89b", + "id": "a5759535-db2c-4555-a235-23809c7a4430", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130118,7 +130118,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -130129,7 +130129,7 @@ } }, { - "id": "5c46264d-8ff6-4848-a27e-7767ff71d0e8", + "id": "5dfd09d0-1eb1-4377-a7ca-ff53f31cf695", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -130170,7 +130170,7 @@ }, "response": [ { - "id": "f6a33baa-bd8b-4e61-ac6c-da8541cc1f8e", + "id": "17e0222f-d102-42b2-a991-e2ba185dd9cd", "name": "SOD policy ID.", "originalRequest": { "url": { @@ -130209,12 +130209,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f58c97ea-8ee3-48aa-b8d3-5194306548f6", + "id": "af2e17f2-58cc-40d4-88ba-aaa1b2b1c3a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130253,12 +130253,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b7ad90c0-c330-4295-9418-49ef6c37ff8b", + "id": "22195390-946b-4af4-bcd6-37a22a1cee5b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130302,7 +130302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a777c9f-4ec0-441b-b1c2-cfb290ad777c", + "id": "8446b8c6-c03b-4b62-9137-9883611a2387", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130341,12 +130341,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "03135680-99ef-4b9e-8043-489aae339143", + "id": "6c0058f4-4b29-4820-ae27-33977cc17345", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -130385,12 +130385,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3106cdb2-9076-4527-9f15-000ab11091cb", + "id": "4e60dbfd-55eb-48da-a8a2-2a53a436e836", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130434,7 +130434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4186761-b358-40f3-8ce6-d5d930466058", + "id": "50797973-8a5c-49c5-8cf4-0b2695e64483", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130473,7 +130473,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -130484,7 +130484,7 @@ } }, { - "id": "44e2efe9-5540-4f5e-8782-b02bc0464c80", + "id": "fde3f6c5-22a0-4a3f-806e-8ca854b8384f", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -130527,7 +130527,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -130538,7 +130538,7 @@ }, "response": [ { - "id": "b4f08121-dbcd-4af5-b5eb-d30bc39add93", + "id": "30b2ad83-182d-4223-bc08-7807da75e0a4", "name": "SOD Policy by ID", "originalRequest": { "url": { @@ -130573,7 +130573,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -130590,12 +130590,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b8caa40-9e9b-42d6-b13b-f3522d61f59c", + "id": "f6f1e119-417f-4526-a617-9338b634dfdc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130630,7 +130630,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -130647,12 +130647,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c131f058-9328-4641-a21e-0b625589a3dd", + "id": "176362f5-4ba5-4296-82de-78009541c757", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130687,7 +130687,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -130709,7 +130709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2979386e-a6ca-4a9c-8f32-b7ab4eac8dbd", + "id": "8fa13e39-8a10-48dd-ae2a-40eb0605b63a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130744,7 +130744,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -130761,12 +130761,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35a2ccd1-d1ee-4efe-bb5a-3d6bb30c8f5b", + "id": "6f0c8329-a336-451c-ba83-a1d467e9abd9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -130801,7 +130801,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -130818,12 +130818,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "95f41356-5a1d-45bd-98c1-76b6cbf22ad3", + "id": "29843d90-a863-4735-abcc-797f8eab2ff0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130858,7 +130858,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -130880,7 +130880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0094de45-3e59-4667-ac8a-bdd0dde87a1d", + "id": "547dd70b-a01e-460e-88bb-1880746447c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130915,7 +130915,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -130932,7 +130932,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -130943,7 +130943,7 @@ } }, { - "id": "83ed4fcf-fc3e-4c89-84dd-10fe2d15d3ac", + "id": "45b94f69-cab3-4d36-b184-4aab78619fd7", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -130994,7 +130994,7 @@ }, "response": [ { - "id": "8dc63df5-7dcd-4809-99f0-fdc0ab2261d4", + "id": "8303af98-05ce-48ea-aa73-277e43c0f5c5", "name": "No content.", "originalRequest": { "url": { @@ -131038,7 +131038,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d6f236f4-9b53-4beb-8bdd-4a6afe12390b", + "id": "230944c6-e21f-454c-929d-10aad3f8d0b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131087,12 +131087,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aadb6a38-78b7-4067-94dd-5b9ab4aaafe7", + "id": "b7a7967c-7a62-4676-b711-a78aeb11db88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131146,7 +131146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "420c7ba6-91a2-4583-8fcd-9255281da700", + "id": "07b3cd6d-1e84-4873-8edf-878b8b540954", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131195,12 +131195,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52af99ed-6e8e-42e4-ad25-1328ac101b09", + "id": "e8dcfd94-3f29-472d-8122-9b79428d795b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131249,12 +131249,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "892efece-f71c-48ce-9ded-f3429a5582fc", + "id": "c8c516ab-25f4-46fa-b9bc-8ad9217e6d51", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131308,7 +131308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c856035-58de-4c76-9dbc-5edb9a3ba8b1", + "id": "9a4365fe-4638-4fa1-a09b-56b72aa17b5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131357,7 +131357,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -131368,7 +131368,7 @@ } }, { - "id": "cc524ebb-cc79-407b-9264-1056e25dd52d", + "id": "450780f1-76cf-41e3-a024-258c78cb2f4a", "name": "Patch a SOD policy", "request": { "name": "Patch a SOD policy", @@ -131422,7 +131422,7 @@ }, "response": [ { - "id": "84a564bb-a62d-44ca-9294-e5807f6c4ec8", + "id": "45fd2889-083d-4424-a5fa-86ada0456598", "name": "Indicates the PATCH operation succeeded, and returns the SOD policy's new representation.", "originalRequest": { "url": { @@ -131474,12 +131474,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"externalPolicyReference\": \"\",\n \"policyQuery\": \"\",\n \"compensatingControls\": \"\",\n \"correctionAdvice\": \"\",\n \"state\": \"ENFORCED\",\n \"tags\": [\n \"\",\n \"\"\n ],\n \"creatorId\": \"\",\n \"modifierId\": \"\",\n \"violationOwnerAssignmentConfig\": {\n \"assignmentRule\": null,\n \"ownerRef\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"scheduled\": false,\n \"type\": \"GENERAL\",\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"name\": \"\",\n \"criteriaList\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ab4f348-6bfc-4f8e-ac2f-3fe3bb38f385", + "id": "d326e64d-aa17-4885-9b9a-714522ee1148", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131531,12 +131531,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb1fc16e-a7dd-4a6e-81b4-601faa76a1de", + "id": "aa97e1d6-b36f-4985-80b8-a5cbb452dfa3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131593,7 +131593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff4ad1a2-401b-4fe6-917e-f205c444719d", + "id": "d034dcdf-f83d-429a-8b21-c5f11656ca58", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131645,12 +131645,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9535ca01-2a30-4942-a2ef-b2f69f40b9f5", + "id": "6eab61c7-b732-414b-b430-c7630a1c9029", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131702,12 +131702,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec581ccb-a9d6-4498-b55c-ab35656c8258", + "id": "f36bcae5-c156-494c-9132-7ed79bd67370", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131764,7 +131764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37dfe734-d46e-41c0-9a22-3ce803fd9693", + "id": "052d9fde-f6a2-4538-bc56-1dcede23e4d5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131816,7 +131816,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -131827,7 +131827,7 @@ } }, { - "id": "e19b2333-005e-4385-945e-1b1d42780c62", + "id": "209ad0e5-1f70-4da1-93a0-72924ed2563c", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -131869,7 +131869,7 @@ }, "response": [ { - "id": "a293c345-b504-4b8d-9608-16d4581f39df", + "id": "fd84cf9d-0496-48dd-a758-bddd842c6886", "name": "SOD policy ID.", "originalRequest": { "url": { @@ -131909,12 +131909,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "body": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f0d6c76e-4589-4457-b330-79e5f72bc79c", + "id": "cc4e24ad-e028-4298-a7da-3f2ff9186e36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131954,12 +131954,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7cd5468e-77c0-4f86-bbb8-74aa8d76bef7", + "id": "115a74d9-140a-4255-a8f0-bc6ab2d859ef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132004,7 +132004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6374a477-a1e1-44cd-977c-bfcf879d8ee5", + "id": "b969ec50-61ef-450e-a44e-b0ec8b36343c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132044,12 +132044,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a9e4d4a-748a-45d2-a82f-5dd2c9944caa", + "id": "2f4b8092-488d-4f5b-95d3-08ba152ab7c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132094,7 +132094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c6af132-5fd0-4aad-82c8-e93208a2f86e", + "id": "c00daba9-ea78-4990-b9ad-357e6d79601f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132134,7 +132134,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -132145,7 +132145,7 @@ } }, { - "id": "d128b374-d43f-403e-bb23-373ba850efb9", + "id": "2b217cfa-4af1-4f44-9a10-b38fefa5b3d2", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -132189,7 +132189,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -132200,7 +132200,7 @@ }, "response": [ { - "id": "04ab4554-7209-4759-a0e5-d3fd35df90f1", + "id": "be522536-cbbe-41b3-9837-ab7790ded2c8", "name": "SOD policy by ID.", "originalRequest": { "url": { @@ -132236,7 +132236,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -132253,12 +132253,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "body": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "59c130ce-98a5-4a38-a2c4-2fbf08b9f275", + "id": "560d2ffe-cc0d-428e-8b5d-8135394290c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132294,7 +132294,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -132311,12 +132311,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a51e515-6c23-4c52-9a61-f5611b114125", + "id": "5ad57600-8c2f-4de4-8079-dc1c72bcb681", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132352,7 +132352,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -132374,7 +132374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46004441-0f39-47a4-a4a3-14849969bb18", + "id": "01daa7d6-7d1b-40a0-9e45-2f87b20b7b00", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132410,7 +132410,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -132427,12 +132427,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "645c58c0-fa16-4647-b623-fb3f91f085c6", + "id": "f6391838-68ee-4957-8ee4-094628de2b87", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132468,7 +132468,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -132490,7 +132490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4286cd5-033a-405c-8aa7-314cdffa4e43", + "id": "3580a35a-f850-4f3c-8907-538a7b67eb71", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132526,7 +132526,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"MONTHLY\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"CALENDAR\",\n \"hours\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"days\": {\n \"type\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n },\n \"recipients\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -132543,7 +132543,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -132554,7 +132554,7 @@ } }, { - "id": "fbde16d1-d55b-4038-95dd-cdfd472ade2b", + "id": "a9ff7a96-a22d-4e9a-8870-f40d6d09f9ed", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -132596,7 +132596,7 @@ }, "response": [ { - "id": "d0280d1b-5c41-4c61-913e-3f347777daae", + "id": "ee0dd736-951a-4988-986b-697d2e4dee48", "name": "No content.", "originalRequest": { "url": { @@ -132631,7 +132631,7 @@ "_postman_previewlanguage": "text" }, { - "id": "da497d69-6fa4-4cc7-807b-2deafb579770", + "id": "6aff297e-6a56-4cd6-a9b7-fa2b3d3cfa41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132671,12 +132671,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a2ab1a04-3ec1-4791-aa7a-4ff26d2c807e", + "id": "ecc4b521-a23a-4364-908a-c6bf1196411b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132721,7 +132721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d10bb79-2899-44d6-946b-11962317cbd7", + "id": "a7fe41e3-2fa6-4ce7-a8a4-01d58821088a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132761,12 +132761,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "07f14098-098b-488c-8500-e1038010bfb8", + "id": "6b6d88e2-8ae4-4dbc-a98f-d6690767d1da", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132806,12 +132806,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70ccf4b3-5ba3-4e0a-b410-80bfb927daba", + "id": "e5340a5b-6b33-4d8f-af52-2fec7ee6bdec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132856,7 +132856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8e67f02-d50e-44ae-a3c1-f853641c18fb", + "id": "b1ccb87c-7631-4a08-a84d-02be147b7fd3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132896,7 +132896,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -132907,7 +132907,7 @@ } }, { - "id": "1ef7b70a-cd52-4aa7-b771-928ee0dbbd03", + "id": "45beec73-f749-4c71-acbc-9a2511471f50", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -132950,7 +132950,7 @@ }, "response": [ { - "id": "c2994375-d852-446e-837c-9e984be4a4cb", + "id": "a517435e-d1b8-4acb-a200-95df1520d78b", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -132991,12 +132991,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"ERROR\"\n}", + "body": "{\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"TERMINATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "927d26e5-a224-4659-9ed6-49289720c011", + "id": "495b0a08-90eb-4bd3-a9a5-c474524cc74f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133037,12 +133037,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57363b70-ff44-46ff-834c-c3854567b932", + "id": "9642b501-551c-44f4-9d2d-43bd6f7a65dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133088,7 +133088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9902fabd-5a41-403e-ae87-674c3b696011", + "id": "666884da-68b2-42f6-9b06-b57b308b582b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133129,12 +133129,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c29dfbae-d0ab-48b9-84f0-069e2b802f2d", + "id": "150479e5-442d-4f2a-aec4-ebfda02cae94", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133175,12 +133175,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7925b152-11b0-44b3-a0a0-20998fe75285", + "id": "45427537-5064-42e5-b19b-ddbae8e4dc23", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133226,7 +133226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e230ce0-9dea-4d8a-ad3c-a9e8eacef5a0", + "id": "ccf4cf35-3ce3-4196-b218-9c21c49cb4dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133267,7 +133267,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -133278,7 +133278,7 @@ } }, { - "id": "2aa91364-7fb9-41cc-8fa6-59528563baf1", + "id": "a9a047a8-adba-4127-86c6-093b4711b158", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -133320,7 +133320,7 @@ }, "response": [ { - "id": "23f1226b-a20d-4768-b400-c6fb0a08897f", + "id": "b48dfe9a-08f7-4e16-a943-afbb6eeebc0e", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -133360,12 +133360,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"ERROR\"\n}", + "body": "{\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"TERMINATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8bfbce8c-229c-489c-8685-8ff666abb001", + "id": "a6485546-ccd2-4363-a39d-a225d65101a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133405,12 +133405,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52c7c10b-7188-4bce-804a-e0522f8c0112", + "id": "3c9117d3-57ff-4304-9735-acb75a62cf19", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133455,7 +133455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80868fa6-db3b-4e4a-99a0-a3d0b8ecbb1f", + "id": "6586ae80-7d62-4ac4-9888-9ec297f56cbe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133495,12 +133495,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "822e5f03-f552-4dcf-abdc-7cfb71d0f122", + "id": "fa1a492c-3b73-4ade-83b5-1aef98423410", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133540,12 +133540,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d230b188-285d-4977-8241-6eff041baf16", + "id": "228577a8-4ab2-4287-912c-97662ef53be2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133590,7 +133590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1f816ea-82bb-4598-a37e-09a871a99efd", + "id": "a33a4683-6783-4c6b-b07e-b847f3c4e0f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133630,7 +133630,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -133641,7 +133641,7 @@ } }, { - "id": "1999a0b9-b583-4a06-a741-7f5687ec1a03", + "id": "063110b6-b0c0-4f20-b2a9-814d96f57f83", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -133683,7 +133683,7 @@ }, "response": [ { - "id": "2f754d57-ca17-4711-b0d0-f044da5164d2", + "id": "6fb01cd1-de3e-414e-8225-3495ad20cd91", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -133723,12 +133723,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"ERROR\"\n}", + "body": "{\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"TERMINATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5014b3e-6ba4-448e-bb12-a831fe2a8104", + "id": "dcbd6f3a-ef38-455c-aa27-901e8559f3d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133768,12 +133768,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52e94e58-4f4a-4ea3-9e7d-76c606441f22", + "id": "075dacaa-747b-4d3e-83d5-47e345a3f024", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133818,7 +133818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "746654fc-27b6-4b6f-8515-b247a5219b6c", + "id": "7f239ba8-d355-43ad-81eb-2b7886a2a4a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133858,12 +133858,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ecbe47ec-f439-487b-8474-e406730d7f31", + "id": "4a78cb2f-0331-4b46-9ff2-e8f783963569", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133903,12 +133903,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9127352-6a33-4c87-b9fd-4a146f321f70", + "id": "788121a9-bd35-497c-858a-9db2be5ce4a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133953,7 +133953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd36a969-297e-4970-9530-a9c141375183", + "id": "c0a111b3-3e81-4351-ba8b-96aee24ef68f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133993,7 +133993,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -134004,7 +134004,7 @@ } }, { - "id": "27bd2d70-16fa-435c-aec0-21342b9e37fc", + "id": "650934d4-db95-4ece-9310-869541e50fb2", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -134047,7 +134047,7 @@ }, "response": [ { - "id": "f7c13e94-3d63-4945-9f84-ecc6f32e815a", + "id": "bceca833-1170-48bb-8711-370f94d73e35", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -134099,12 +134099,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"ERROR\"\n}", + "body": "{\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"TERMINATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b93208c7-52cd-42bf-b752-3ae608dc30a2", + "id": "3df64c59-203c-40b2-bd75-cba3f3f09b89", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134156,12 +134156,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2347b28f-4c76-4c46-9a95-0b27152225ac", + "id": "679928bc-7ab1-4e4d-8535-c2b23b5ecc8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134218,7 +134218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "713bb2e3-cf27-49aa-8fee-164e8ec740f2", + "id": "3abcbc91-4f82-49c6-89de-3dc90088c336", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134270,12 +134270,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb5f6726-726f-4d35-ba32-8278ce85ecf5", + "id": "f0ccfa38-5eda-45ea-988c-b1b41f02c5aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134332,7 +134332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab7d3d25-9391-4391-90fd-2a634682c75d", + "id": "63ef5c23-f249-4db2-adcc-503146a6d62c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134384,7 +134384,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -134395,7 +134395,7 @@ } }, { - "id": "77ef26d0-6e83-41a1-a589-a6fede5f9de0", + "id": "69bdb451-73be-4804-ac9a-6b93a01ac41d", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -134424,7 +134424,7 @@ }, "response": [ { - "id": "6f8e0d14-97d7-4f70-a679-9244363a79cb", + "id": "8c028171-39e3-4f1a-9de2-126e3196e40f", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -134462,12 +134462,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"ERROR\"\n}", + "body": "{\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"TERMINATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68eb79f4-f622-437a-a924-3720310c2e35", + "id": "c52b7d48-996a-4bf5-ba0f-914c3aac38e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134505,12 +134505,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "be1db06b-8a9c-46b7-8fe2-81bdf9f79446", + "id": "9907cc6f-19f1-425f-9a25-62be09204ccb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134553,7 +134553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fff7a8ae-0568-489f-99eb-9f2721659d19", + "id": "60b60d92-731b-434d-b4db-42c8e5637f8c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134591,12 +134591,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7d9e63d-1f00-4c86-ae0c-b96f015f74e1", + "id": "0197803b-ed41-4944-83e0-644d41bfdb5b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134639,7 +134639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0edb65a-ed50-4e00-9a47-1993d6ea4ead", + "id": "2b8baebc-efa1-4f95-b80c-c2bf7c3f636d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134677,7 +134677,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -134688,7 +134688,7 @@ } }, { - "id": "3227f3c8-8e7e-473e-a0ff-675928c97c31", + "id": "600b17d9-3c95-4489-8470-d48dd71508c3", "name": "Download violation report", "request": { "name": "Download violation report", @@ -134730,7 +134730,7 @@ }, "response": [ { - "id": "2e0fab2a-c12c-4d28-97ad-32db8409b00c", + "id": "68831850-ea69-4968-8dce-9d50a4093456", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -134775,7 +134775,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6bc10481-67f5-4168-abd0-8c03c7e9bd17", + "id": "cb1f2223-d62b-46cc-9fa6-263dc4686efd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134815,12 +134815,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "09cb2858-c32d-42b3-9032-0aaa8451a2c5", + "id": "81181f00-71df-4811-8477-6bdc6ffceebf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134865,7 +134865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3254c5be-aa89-4726-97db-8baec59d0411", + "id": "e995a59c-460b-40e1-8198-f23cc7452844", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134905,12 +134905,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c7e300e-2ac2-4a38-8185-c823d8901fc9", + "id": "7121abf7-f11e-4a4d-892f-c1007e4d7346", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -134950,12 +134950,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b813b342-f791-43b7-96d1-35a86c6b38b6", + "id": "565f30da-b350-47c7-81f7-cda99d2be113", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135000,7 +135000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "902cd4e0-be3a-4904-8cf5-e349cb2e6421", + "id": "2601b349-34a5-4792-aa07-f301fc204b93", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135040,7 +135040,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -135051,7 +135051,7 @@ } }, { - "id": "6567881f-3ec5-4ea6-9d62-277c409f61e8", + "id": "2488190a-469e-4b05-a383-b512558e20cc", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -135104,7 +135104,7 @@ }, "response": [ { - "id": "c4b97f77-b1fc-4873-aaae-e5bb463ece9c", + "id": "7b54a030-2734-45a6-b808-9f27d15079c6", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -135150,7 +135150,7 @@ "_postman_previewlanguage": "text" }, { - "id": "03550e44-0a21-42cf-9009-242452c2377d", + "id": "454a7b2b-9513-41d3-90ad-b9587f6ee98e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135191,12 +135191,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ac99676-cddb-4992-b884-1ef3c8733cfb", + "id": "413a276c-5473-4a29-9de0-5fda5a919d06", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135242,7 +135242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2f9e230-b317-4880-bbf2-71d99a260bd1", + "id": "c4e317ea-25eb-4415-95a6-2ee15ccee295", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135283,12 +135283,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b36b809a-8483-4aa0-8e7a-cfcce1fec2fb", + "id": "a4a2ea0d-8e1a-4fab-832f-ed204e4938e1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -135329,12 +135329,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5910455d-ccb3-4408-9699-679a3c995c18", + "id": "2d522ff7-f9b6-40b9-9642-f50de6ca7f05", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135380,7 +135380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdeb639c-fd5d-46de-bb24-1877176a0168", + "id": "8504b10c-85f7-4e7d-a764-7577e01a3bab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135421,7 +135421,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -135438,7 +135438,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": "09d1c22f-a94a-4fe6-baaa-1c0b0295216d", + "id": "7260e29f-b008-4629-8ac0-02ce9419f359", "name": "Predict SOD violations for the given identity if they were granted the given access.", "request": { "name": "Predict SOD violations for the given identity if they were granted the given access.", @@ -135481,7 +135481,7 @@ }, "response": [ { - "id": "90b314ec-64c0-4684-b38b-ba53aa96cb4a", + "id": "1019e448-6e86-49ad-923a-c5bf5c4328e3", "name": "Violation Contexts", "originalRequest": { "url": { @@ -135538,7 +135538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a4c6179-4584-41f0-b5e4-315726ea046f", + "id": "a404d48e-afd7-4d9c-90d7-bcb38895f2cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135590,12 +135590,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8efee5c-2edc-4e8d-8817-b3a1aa0b0350", + "id": "a4e823c1-a4c5-47c6-9156-cf4fe5ba62e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135652,7 +135652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "363bb691-2f83-4446-811c-047980c4e518", + "id": "a30cce95-63d0-474e-8eb1-1306489003da", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135704,12 +135704,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3084b2f-734b-41ce-b61d-63e30681d573", + "id": "cd727782-07d5-45bc-8184-eb6ef994e721", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -135761,12 +135761,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4257c198-0d3d-4051-ad0b-e7d725eec2b5", + "id": "4c76004f-f539-473e-8528-af71b095fc68", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135823,7 +135823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4133c18-213a-40bd-ae4a-08b55bf20c7e", + "id": "4780f593-a35c-4c0c-b965-7c70ef223d69", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135875,7 +135875,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -135892,7 +135892,7 @@ "description": "Use this API to implement and customize source functionality.\nWith source functionality in place, organizations can use IdentityNow 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 IdentityNow 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 IdentityNow makes it possible to manage user access across them all.\nThen, if a new hire starts at an organization, IdentityNow 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, IdentityNow can grant the necessary access and revoke the unnecessary access for all the employee's various sources.\nIf an employee leaves the company, IdentityNow 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 IdentityNow, 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\nIdentityNow 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 IdentityNow, 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 [IdentityNow 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/idn/docs/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 IdentityNow tenants so an access change on a source is detected quickly in IdentityNow.\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 IdentityNow collects from the source and how it correlates that account data with identity data.\nTo define which account attributes the source shares with IdentityNow, 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 IdentityNow 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": "9fe1327e-feb3-4499-8337-893f2f083eaa", + "id": "0a9a5b0e-3af5-4170-9253-976cb9072b03", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -135976,7 +135976,7 @@ }, "response": [ { - "id": "c9ad2b23-1f3c-42a9-96b5-4a18d6f843a5", + "id": "0f4b2379-1bd9-47be-94fc-75778dd2d9b0", "name": "List of Source objects", "originalRequest": { "url": { @@ -136069,12 +136069,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_GROUP_PERMISSIONS_PROVISIONING\",\n \"ACCOUNT_ONLY_REQUEST\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n },\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"AUTHENTICATE\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n }\n]", + "body": "[\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ACCOUNT_ONLY_REQUEST\",\n \"SHAREPOINT_TARGET\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n },\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"GROUP_PROVISIONING\",\n \"NO_RANDOM_ACCESS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae6ef5f8-696d-4cdf-a4ff-a7ab79a536af", + "id": "75cfc81e-bf7c-414a-ab23-133fe1c3815c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136167,12 +136167,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8e5a7fb4-4c8b-4ef9-8e04-b1abfbd225c5", + "id": "2c9cb2b7-a6ed-491e-a160-7706ca695bb2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136270,7 +136270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66f056d6-9078-4baa-82a6-c5b73f6431d8", + "id": "3099993d-160b-4559-850c-ac3ceee1e79c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136363,12 +136363,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9b112f40-1f22-4a5b-983d-6333e32d9729", + "id": "7acca9e2-18aa-4024-81dd-56ee2580b0eb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136461,12 +136461,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c3e8ea34-d27a-4a56-9784-a5532673037e", + "id": "b2510b64-a78e-4a53-b23c-a71a885c6790", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136564,7 +136564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d0b34da-abca-4972-9cfa-19f73ae3a803", + "id": "7ac0b5c9-2869-43cd-abfe-2691a8b87a36", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136657,7 +136657,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -136668,7 +136668,7 @@ } }, { - "id": "5077b2c9-df6b-4757-8ef0-da9559bcc92f", + "id": "b44bca6f-e631-46cb-a5ca-11fed2391df0", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -136709,7 +136709,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136720,7 +136720,7 @@ }, "response": [ { - "id": "2496bbbb-82d0-4b15-a1c0-8f23b43bc5c5", + "id": "3b13cdb6-10bd-409d-a66e-5bceea716e80", "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": { @@ -136764,7 +136764,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136781,12 +136781,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd7d186f-5175-45d4-bf36-1ca22e09b342", + "id": "2c1c6d22-ae81-4d6f-9de0-ec7c00212271", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136830,7 +136830,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136847,12 +136847,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52b87f2f-5303-401b-9ba7-41674a5553f3", + "id": "0ca61537-9fc0-4c99-ace7-3993fb27cd73", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136896,7 +136896,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136918,7 +136918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76dfee7f-0b6a-408f-9f60-de0a6de22ae7", + "id": "52ab3d90-c737-4957-a1f4-61dbf0515692", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136962,7 +136962,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136979,12 +136979,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9073aeff-fff8-4147-b787-abe8c005ae3e", + "id": "3c48260a-9417-470c-9a60-5e129d7ac80b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137028,7 +137028,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137050,7 +137050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ced3dbb-17c7-441a-9979-9a88b22f265c", + "id": "e430307f-7372-4c53-ab79-e083ed5b28a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137094,7 +137094,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137111,7 +137111,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -137122,7 +137122,7 @@ } }, { - "id": "665e1ec2-7df5-49f7-bb0e-9d43af06123a", + "id": "1ec2b55c-be47-4207-a2ba-349463b9e74b", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -137163,7 +137163,7 @@ }, "response": [ { - "id": "efa4ca45-17cc-4978-87f8-8f7460a6aa75", + "id": "f9c8fb42-51ad-4a48-90a3-10bca66138ef", "name": "A Source object", "originalRequest": { "url": { @@ -137202,12 +137202,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7acb5e2-5e6d-4e78-b2df-345a95f9ab08", + "id": "1a000cc5-cffc-4390-99e0-2e490f4dba6e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137246,12 +137246,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7d000d8e-7b43-4dfe-ba37-6b8eef367e4a", + "id": "84704304-efa2-4541-96ee-76490ccf9744", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137295,7 +137295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "208861eb-1c4f-4821-a07d-cda6b344a885", + "id": "ff21f1fb-b900-4bf1-8b71-b1003bb758ad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137334,12 +137334,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b82e8121-11c1-479a-843e-fd55f9e7cd9d", + "id": "2531bb4c-afbf-43df-b6fe-e2855aa9b744", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137378,12 +137378,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c4b45c5-cc47-4255-8a69-1a41ea4aafbe", + "id": "0876cf4e-279f-4fe8-93c6-8111facdb104", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137427,7 +137427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de1fabfc-17ce-481a-87f9-6a56d63a63da", + "id": "53a2a29c-f5e2-44d1-99fe-63638d31b1aa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137466,7 +137466,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -137477,7 +137477,7 @@ } }, { - "id": "1de19a50-7733-4cf2-b6c4-27abf061b3d7", + "id": "9eb155db-cca2-4e12-a303-8e2ade5b0847", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -137520,7 +137520,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137531,7 +137531,7 @@ }, "response": [ { - "id": "67d1505d-d704-41e2-a846-91c29deddd75", + "id": "a07c63f8-6e27-44c3-9f80-3c94ce2241c2", "name": "Updated 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": { @@ -137566,7 +137566,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137583,12 +137583,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "101084f2-fd4e-4bae-a2cd-d472b183ca84", + "id": "64b8678f-6731-4307-a612-81ac1c1fe0b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137623,7 +137623,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137640,12 +137640,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5492f173-5e50-4170-9dc5-f44bfa86423a", + "id": "ae351db3-1e8e-4407-97f3-97b56fcd328c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137680,7 +137680,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137702,7 +137702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4cf01c9-3fd2-4e94-a50e-6c1ef0362899", + "id": "d735866b-6511-4727-b275-22f89ea32f29", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137737,7 +137737,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137754,12 +137754,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "155c55a0-598d-49d5-b6c5-34eb47403087", + "id": "15dad69d-f546-46ea-997b-31bff15867e6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137794,7 +137794,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137811,12 +137811,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1bbea16-63c8-4252-b5e4-6b0e4d807ba9", + "id": "ef957742-0c19-410d-99c7-4129579adba2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137851,7 +137851,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137873,7 +137873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7a4c712-6bf4-447a-93e1-68ab107ea364", + "id": "ac1dc2db-19c8-4320-9470-34e572cf6ef2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137908,7 +137908,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137925,7 +137925,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -137936,7 +137936,7 @@ } }, { - "id": "3171e14b-3b78-4ce0-9dc7-fa065a72f84d", + "id": "70c2450c-04d6-4b15-a714-7e187014bff4", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -137979,7 +137979,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -137990,7 +137990,7 @@ }, "response": [ { - "id": "91082552-0baf-45dc-9d10-9c38967ec5dd", + "id": "6d62f903-0a89-463d-bd60-3fb7937db5d1", "name": "Updated 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": { @@ -138025,7 +138025,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138042,12 +138042,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "972260ec-0154-46e5-a7f4-974b5c698501", + "id": "284a3436-e959-47b9-85da-289c562152d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138082,7 +138082,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138099,12 +138099,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "144fc5bf-74c0-49c3-8b43-1220536fc47c", + "id": "dc6b126c-1843-4aa2-be82-6b7cbba201ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138139,7 +138139,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138161,7 +138161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "469ceab1-cd96-4e56-a0e6-62537b6d9e21", + "id": "2e9c10a2-2961-4fd4-a990-0f8f4e9aeee7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138196,7 +138196,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138213,12 +138213,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2db08c6-cce7-4375-947c-5bb74faeb417", + "id": "cf357385-5d36-4eef-a95d-e732afb199ce", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138253,7 +138253,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138270,12 +138270,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56f75026-7c7e-4b1f-8c0c-1ca2664d2544", + "id": "ec23e42a-bbf8-4943-bc31-55af1294f7c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138310,7 +138310,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138332,7 +138332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f9cc2e8-085c-49e2-9b71-62ced4767600", + "id": "29f144de-077b-4872-a63d-01595ed1b628", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138367,7 +138367,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -138384,7 +138384,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -138395,7 +138395,7 @@ } }, { - "id": "96ae734e-ee5c-4ce5-ac3b-1aab6f571c3b", + "id": "1257fb97-c1aa-4cd9-b114-e1af47c24428", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -138436,7 +138436,7 @@ }, "response": [ { - "id": "9dbe6d65-3c5e-43f8-83e9-81ee2a66b5f7", + "id": "8ee35b32-35b9-4724-a1ed-c684cc19ed2b", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -138480,7 +138480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee777e17-72b4-4164-9f34-ab1710627fde", + "id": "5c28d6c8-bdda-4588-958e-2819a4c6cffa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138519,12 +138519,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a23145d-8d9b-4458-8bd7-270a8d50d9be", + "id": "c66d0072-472d-4110-9b67-e449a61074d2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138568,7 +138568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c04409e-b81c-40de-9314-5742c7bd20be", + "id": "a22ebf0d-3ad4-43e7-8d1b-f491e255850d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138607,12 +138607,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9731d7f2-8331-47eb-8d7d-accfd16f24ba", + "id": "4cd2a81a-6675-42b9-9fb6-3617b8f62e62", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138651,12 +138651,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c07b51b-2b12-43fe-b871-158ed8fd08ff", + "id": "8a106e80-005d-4877-b8b3-7f2adb9b17f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138700,7 +138700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6cd3d28-6910-4065-96bb-a1392a61eaaf", + "id": "5a2ed10e-0c69-45ac-b3fd-1f260c612ad9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138739,7 +138739,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -138750,7 +138750,7 @@ } }, { - "id": "2d22a95e-6baf-47e2-afb6-fe5e03432e54", + "id": "ae3b834b-e436-434b-ac83-783426504cd7", "name": "Attribute Sync Config", "request": { "name": "Attribute Sync Config", @@ -138792,7 +138792,7 @@ }, "response": [ { - "id": "69fc9d4d-5f47-465b-bdd5-a721e0324e23", + "id": "c6dc2087-ab2d-4060-91f9-f0dd5b70a5e4", "name": "Attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -138832,12 +138832,12 @@ "value": "application/json" } ], - "body": "{\n \"source\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "body": "{\n \"source\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "383ec43f-6f7e-4134-b18d-a29c15a02b5c", + "id": "b15462de-5c27-4403-b83a-0b7900ad742e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138877,12 +138877,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "737e4c3b-e3a3-4378-8967-2c23def52a6d", + "id": "cb57e3a8-4298-4414-9b46-23225d4596d6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138927,7 +138927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c09e47b-fdd0-46f2-b9c0-1ee2b8a64a5c", + "id": "b873e1f5-8039-48dc-98e0-95ba98f75eed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138967,12 +138967,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdcb924a-2034-4dd5-8435-5c651b4e3146", + "id": "095f935f-3d9c-461f-9753-7341eb157dd3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139012,12 +139012,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c079151-def9-4acc-a8a7-fd4fff76a809", + "id": "e3f747a6-82fa-4646-9454-7a214ff6336e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139062,7 +139062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b666253f-8c24-46aa-a72c-99ca7306b361", + "id": "a9fdbc4e-fb1e-49e7-bb56-40097790663a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139102,7 +139102,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -139113,7 +139113,7 @@ } }, { - "id": "70d69209-e24a-4e54-88bc-a349b389d207", + "id": "d8208a2b-dbb9-47f0-aa31-e4dab8a0a999", "name": "Update Attribute Sync Config", "request": { "name": "Update Attribute Sync Config", @@ -139157,7 +139157,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -139168,7 +139168,7 @@ }, "response": [ { - "id": "eb14a24d-6fc1-47eb-add9-d3f4fae2ee3f", + "id": "ffcb55ca-686b-4f59-9277-07db8fc314e0", "name": "Updated attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -139204,7 +139204,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -139221,12 +139221,12 @@ "value": "application/json" } ], - "body": "{\n \"source\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "body": "{\n \"source\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86c89a4d-fb55-4beb-998d-c17e4078e135", + "id": "60765cb4-6321-4dfd-880a-987f70cbb5bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139262,7 +139262,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -139279,12 +139279,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29528c78-a0fa-40d8-8aaa-f41d197bc145", + "id": "bf426ba0-4fad-4218-a532-21b2f0a1f17e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139320,7 +139320,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -139342,7 +139342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaa8cc6f-23c9-4b43-9094-55fba1fc97f4", + "id": "d97f56bd-1821-4e97-abf9-931c51fd647f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139378,7 +139378,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -139395,12 +139395,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76c8e838-fbb7-42a0-9e9a-b2a6f72435f1", + "id": "bcf9b4fa-5724-4791-aed3-31a822716cfb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139436,7 +139436,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -139453,12 +139453,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "818cdc7b-818f-44c2-b06a-fee122c25fa9", + "id": "c3a776fe-0518-45e2-bd5a-9d2054463f04", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139494,7 +139494,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -139516,7 +139516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87debc27-2ea7-4f34-9bdd-8456de9ce9e8", + "id": "a4f570e2-23d5-4297-ad41-5fc1969523d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139552,7 +139552,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", + "raw": "{\n \"source\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"attributes\": [\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n },\n {\n \"name\": \"\",\n \"displayName\": \"\",\n \"enabled\": \"\",\n \"target\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -139569,7 +139569,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -139580,7 +139580,7 @@ } }, { - "id": "03dbb6db-96f9-40d7-8193-9df0447aa6c8", + "id": "d88ba770-7342-4fdd-99f6-5bbe3f6c6b50", "name": "Check connection for source connector.", "request": { "name": "Check connection for source connector.", @@ -139623,7 +139623,7 @@ }, "response": [ { - "id": "be76221f-95d9-4219-becd-75d948d5ac9c", + "id": "b6372157-d9ac-4fe8-bcc2-1fc8a77021bc", "name": "The result of checking connection to the source connector with response from it.", "originalRequest": { "url": { @@ -139664,12 +139664,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"SUCCESS\",\n \"elapsedMillis\": \"\",\n \"details\": {}\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"FAILURE\",\n \"elapsedMillis\": \"\",\n \"details\": {}\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bced2298-98c1-4156-a391-c5aea9d853a9", + "id": "f6266f9a-96b7-4743-b3f2-e65ead807d9a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139710,12 +139710,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e42351d-3b28-4966-83c6-a1e4de319c34", + "id": "7e466fa9-bb2d-4729-9bcb-a837467a8149", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139761,7 +139761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "839aade5-6bfd-4905-8c8f-50f42908b77f", + "id": "c5d05b23-9d72-486b-90fe-5177397c2334", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139802,12 +139802,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97c6c1dc-8f20-4259-a114-41c3b65b9a79", + "id": "68387979-5839-4c5b-88ae-4e45a0ea4dbc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139848,12 +139848,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7c122b92-1986-4775-8fc4-b99c69d1c2e9", + "id": "b8212e5d-5e0c-4303-a45a-034e0c58758a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139899,7 +139899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42a7ab55-a278-4f40-84b8-30a360fa527f", + "id": "a8d5b78d-0f3c-46d4-a341-0ae1ef49fc03", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139940,7 +139940,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -139951,7 +139951,7 @@ } }, { - "id": "7200f042-c76c-40d9-9e87-cc8ed99dda1f", + "id": "8bc08f91-a60f-4049-9d2d-8644dea2f98a", "name": "Peek source connector's resource objects", "request": { "name": "Peek source connector's resource objects", @@ -140007,7 +140007,7 @@ }, "response": [ { - "id": "c8a6d574-d7ef-4f8a-84b1-68a17c6d1cbc", + "id": "5448d12b-c4e0-4f93-aa78-fc133b685cde", "name": "List of resource objects that was fetched from the source connector.", "originalRequest": { "url": { @@ -140066,7 +140066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90d691ac-15bc-4614-b73a-d71be31f3c95", + "id": "905c1978-4fe6-4f8d-b21c-7a21a13f4d5b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140120,12 +140120,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3087a7fb-3dc4-4328-a14d-121303bf81b7", + "id": "86ffd855-06d2-4de1-9d67-2a3af3bf4bd8", "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": "67c0e617-060d-4c8e-8dc2-3cf54f8bec5d", + "id": "dae333d4-6ff1-4278-82c5-3abc4734c7df", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140238,12 +140238,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5cd41cfe-16d7-4884-b5f4-a4d979f109db", + "id": "a3808517-7178-4769-bcba-2e2d30f7ff02", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140297,12 +140297,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "23e021a9-bffa-41fb-9390-c01e1a0355f4", + "id": "254a4a4d-7485-474d-b055-93314c3f61f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140361,7 +140361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "439ff94b-e986-49ca-b20f-c7119128d8c7", + "id": "0ec3b137-5433-4173-a433-78b2142ec881", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140415,7 +140415,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -140426,7 +140426,7 @@ } }, { - "id": "054fd7b8-fb5b-4cd1-9278-96b38e144a2e", + "id": "8a52e096-1cc0-432f-9ebb-75290a89b9e9", "name": "Ping cluster for source connector", "request": { "name": "Ping cluster for source connector", @@ -140469,7 +140469,7 @@ }, "response": [ { - "id": "5c99c016-28c0-4226-ab3e-945dfd150f59", + "id": "4cd4855d-6d37-44fe-b164-14cad24a1847", "name": "The result of pinging connection with the source connector.", "originalRequest": { "url": { @@ -140510,12 +140510,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"SUCCESS\",\n \"elapsedMillis\": \"\",\n \"details\": {}\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"FAILURE\",\n \"elapsedMillis\": \"\",\n \"details\": {}\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "378920d9-ce60-4ec5-bffc-3f7d2a4ebc8d", + "id": "203f18b3-ce00-479d-b059-87fd2c2023e5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140556,12 +140556,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f49580db-c2fd-42c1-9b56-380c0adbf0e3", + "id": "020a010c-63ed-4ace-b4e0-e6f1b608e6ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140607,7 +140607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb16687a-93fd-4ebc-bed4-aeb83a5635df", + "id": "899dd582-079a-478d-973c-6873fa61d632", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140648,12 +140648,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "55360561-cded-4057-833b-92fd7eaa8bfb", + "id": "a8e752fa-90dd-4968-b51a-2843f1ffe53c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140694,12 +140694,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97d3a0c2-b84a-49ca-b564-8e31ad6591fc", + "id": "f04e911f-a53d-4d5f-8b5a-c858085535db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140745,7 +140745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c672e951-0c4c-4e00-a0c3-eb3899a1468b", + "id": "9629357f-aa1c-4a7d-970b-d91c62e48ad0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140786,7 +140786,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -140797,7 +140797,7 @@ } }, { - "id": "f16d2588-0d15-47cb-a65b-3ec629ec017b", + "id": "ec99acd7-2d27-45c6-b6fd-97aa36dc011a", "name": "Test configuration for source connector", "request": { "name": "Test configuration for source connector", @@ -140840,7 +140840,7 @@ }, "response": [ { - "id": "5a370621-30fb-405c-89e9-b24165e7d6b5", + "id": "6ed02445-c00f-4d43-a073-05ba37a095a4", "name": "The result of testing source connector configuration with response from it.", "originalRequest": { "url": { @@ -140881,12 +140881,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"SUCCESS\",\n \"elapsedMillis\": \"\",\n \"details\": {}\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"FAILURE\",\n \"elapsedMillis\": \"\",\n \"details\": {}\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf6c11b7-c931-4b8b-94d4-a322427902dd", + "id": "92fbdb8d-0840-403e-922e-629d7339c115", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140927,12 +140927,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a3809438-5b03-4a65-9845-24fcb2334cc0", + "id": "d96ef5b3-8bc7-430e-9dda-147d75017157", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140978,7 +140978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7fdd552-f053-4fc9-b872-8ac4492ffff0", + "id": "6edb2e68-9775-4a8a-b558-de5ec6b1bb7b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141019,12 +141019,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "338a7984-fbe8-4210-81ea-3f624993038f", + "id": "d74931a2-776b-4c8b-ba90-596d616ae6a0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141065,12 +141065,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "622485bc-fbb9-4cf0-9656-165f94348e87", + "id": "29233cbd-77ba-46d1-8717-9d98d6a544fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141116,7 +141116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a779ccc-0786-4d38-8e2e-55a61dbbf8a2", + "id": "42cbab0c-a878-4a7e-96b0-99d30f9badd9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141157,7 +141157,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -141168,7 +141168,7 @@ } }, { - "id": "dbecba82-3c67-4329-bdc2-1a9ec2fb5f77", + "id": "5fe37aed-afd6-4541-8c32-78e7d79604e6", "name": "Gets source config with language translations", "request": { "name": "Gets source config with language translations", @@ -141194,7 +141194,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "ko" } ], "variable": [ @@ -141221,7 +141221,7 @@ }, "response": [ { - "id": "a8a3d1c7-2f4c-4756-883e-8fb6f168fad2", + "id": "81e87531-c92a-4346-bab3-305e9dda16b6", "name": "A Connector Detail object", "originalRequest": { "url": { @@ -141242,7 +141242,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "ko" } ], "variable": [] @@ -141277,7 +141277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d0ec61b-a80f-42d2-b0c9-91a2b1a369fb", + "id": "6c7c7260-b193-44c8-b078-4095e7e20639", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141298,7 +141298,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "ko" } ], "variable": [] @@ -141333,7 +141333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14b3dbc0-333f-423c-a8e2-b9a40eb943c8", + "id": "fc65652a-56f1-450f-a884-8372c8aee929", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141354,7 +141354,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "ko" } ], "variable": [] @@ -141384,12 +141384,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3a34111-670b-43fc-a1f1-dac736f0c1ae", + "id": "a56195db-b3c6-420a-a4cb-ec8232f7466c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141410,7 +141410,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "ko" } ], "variable": [] @@ -141440,12 +141440,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "08378261-a1c4-4b2d-a3e4-268262223771", + "id": "1fe62e41-9d63-4637-86e0-f4722245e718", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141466,7 +141466,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "ko" } ], "variable": [] @@ -141501,7 +141501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a46091db-def9-4cda-b8d9-4c3bf42ee15e", + "id": "c3935fc3-54a6-41ee-a830-4c93859072d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141522,7 +141522,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "ko" } ], "variable": [] @@ -141552,7 +141552,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -141563,7 +141563,1202 @@ } }, { - "id": "23bca671-cc47-4bd1-874a-babd4db55311", + "id": "60a359b5-f62c-46d7-9484-894609d45c94", + "name": "Native Change Detection Configuration", + "request": { + "name": "Native Change Detection Configuration", + "description": { + "content": "This API returns the existing native change detection configuration for a source specified by the given ID.\nA token with ORG_ADMIN authority is required to call this API.", + "type": "text/plain" + }, + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "key": "sourceId" + }, + { + "disabled": true, + "description": { + "content": "(Required) The source id", + "type": "text/plain" + }, + "type": "any", + "value": "", + "key": "id" + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "64d674ce-70c4-4e9d-b0ea-75f194b75ed5", + "name": "Native change detection configuration for a source", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_DELETED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "03592423-9c1c-4477-89f2-9b6ff5acbb3c", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "a797669d-53a2-4414-a9f2-556a44c2cfeb", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "a088bfc1-df2b-4fcb-82c3-0649c728f42f", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f328e168-b0f2-4247-96eb-b3ec4237947f", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "aec1cab3-8db7-4ce5-8eca-b06a30af93c7", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "2f97f26c-c537-4e78-9e4f-9d1eb9877adb", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "8cd4805e-2996-4ff6-a93b-da17c9eb6ce6", + "name": "Update Native Change Detection Configuration", + "request": { + "name": "Update Native Change Detection Configuration", + "description": { + "content": "Replaces the native change detection configuration for the source specified by the given ID with the configuration provided in the request body.\n \nA token with ORG_ADMIN authority is required to call this API.", + "type": "text/plain" + }, + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "key": "sourceId" + }, + { + "disabled": true, + "description": { + "content": "(Required) The source id", + "type": "text/plain" + }, + "type": "any", + "value": "", + "key": "id" + } + ] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_DELETED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "response": [ + { + "id": "7fbf9e5e-4850-401f-83d0-3213b1b30055", + "name": "Updated native change detection configuration for a source", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_DELETED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_DELETED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "181a5de5-669b-4522-b1cf-eda5f36e50bf", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_DELETED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "28b6f2f8-708b-4dec-a255-63120eaa6653", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_DELETED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "dfa209d9-57c8-4eee-974a-2a885f530de6", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_DELETED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "59a065b8-12ec-4bf7-99af-7059b4171a1b", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_DELETED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "640a7a11-7508-45f1-8aeb-cf1e517d6e56", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_DELETED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c929f2f6-80ab-42ce-8871-9b6244b6b8aa", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"enabled\": false,\n \"operations\": [\n \"ACCOUNT_DELETED\",\n \"ACCOUNT_DELETED\"\n ],\n \"allEntitlements\": false,\n \"allNonEntitlementAttributes\": false,\n \"selectedEntitlements\": [\n \"\",\n \"\"\n ],\n \"selectedNonEntitlementAttributes\": [\n \"\",\n \"\"\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "58c0a590-148b-4c2e-a566-13242cc4a4a5", + "name": "Delete Native Change Detection Configuration", + "request": { + "name": "Delete Native Change Detection Configuration", + "description": { + "content": "Deletes the native change detection configuration for the source specified by the given ID.\nA token with API, or ORG_ADMIN authority is required to call this API.", + "type": "text/plain" + }, + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "key": "sourceId" + }, + { + "disabled": true, + "description": { + "content": "(Required) The source id", + "type": "text/plain" + }, + "type": "any", + "value": "", + "key": "id" + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "DELETE", + "body": {} + }, + "response": [ + { + "id": "36d84d89-438a-443e-98de-4ff99c15f34d", + "name": "No content - indicates the request was successful but there is no content to be returned in the response.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "No Content", + "code": 204, + "header": [], + "cookie": [], + "_postman_previewlanguage": "text" + }, + { + "id": "0dd6c0a4-e25d-42d3-bc87-dba3d710e0cd", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4c16ce35-2bd5-4984-83af-f04eed2369ce", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": {\n \"description\": \"A message describing the error\",\n \"example\": \"JWT validation failed: JWT is expired\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "8c3ad147-0366-48ee-8ea6-2e48c6f231b1", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "76a9ac4a-1602-4f98-b48c-258844b23fed", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "0e79581f-fd91-450f-aefb-c6bb38ccdac1", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": {\n \"description\": \"A message describing the error\",\n \"example\": \" Rate Limit Exceeded \"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "50baba24-4957-4e07-aa9d-c3035c10349a", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "sources", + ":sourceId", + "native-change-detection-config" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "c1cc0307-efb9-41f6-a1e8-a8cabd6a4082", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -141605,7 +142800,7 @@ }, "response": [ { - "id": "87447625-b8d4-4758-b407-2ea473c8241f", + "id": "9a985249-5c01-4513-85f8-7bbaee8b7a21", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -141645,12 +142840,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CREATE_IDENTITY\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9176b9dd-c175-4433-b859-c42dfc80563d", + "id": "fbea4723-442c-4c63-87e0-7397aced78f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141690,12 +142885,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "09686607-944a-486d-b8de-7b69b51b4ab7", + "id": "1f297885-628e-4743-8668-9dbaa3c7c553", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141740,7 +142935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7181d1d5-83ca-4090-9478-cfdffb5d6add", + "id": "a60f86fc-f0c2-4aa8-89ae-cc95b0f1e4cc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141780,12 +142975,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "335af244-ac6b-4f58-92a5-c22f9cc1f313", + "id": "6e39a1f5-2b85-455d-b4de-d790de67cbda", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141825,12 +143020,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3e8c9d21-2851-4f90-bb0e-9358a2409a43", + "id": "fb0c56dd-d8c3-45c8-aa41-c82d6408eead", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141875,7 +143070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd5a8367-4528-4bae-9ff0-4762a8058bbd", + "id": "2a44c2fd-d651-4b4b-8add-aa4a023f1f93", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141915,7 +143110,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -141926,7 +143121,7 @@ } }, { - "id": "6f4115dc-7e81-4e46-8b59-f8aaf7851e54", + "id": "9c290264-f2ea-4e78-a99f-2bf33adec796", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -141981,7 +143176,7 @@ }, "response": [ { - "id": "ac0b5b93-1458-44e7-821f-f4d1c56ec50f", + "id": "1d58d18d-a183-4169-849b-f6675fe1dceb", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -142039,7 +143234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9085aba0-7048-4fcc-b7c9-0875e72d2b06", + "id": "f4e37fcc-0d9d-484e-8d17-8cd601ee1557", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142092,12 +143287,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e16b4af7-42dc-4f4a-a611-ae82e653106c", + "id": "d6025518-5bff-43f1-9fed-600921f097e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142155,7 +143350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8d08193-0f43-430e-8872-9dc0f676a90b", + "id": "fe44d161-9f09-437f-a52c-7b9c4ef31ed0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142208,12 +143403,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70c5bdca-7e93-4ed8-b804-ab4411ab1917", + "id": "e6084fb8-cf43-419f-aa3f-c2647b785891", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142266,12 +143461,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b6335021-0254-4958-935c-be8664bcc3bf", + "id": "570d03be-a60c-4e74-9239-ac0f0c73abc3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142329,7 +143524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb1ed619-398a-4be8-a51a-0a427e458798", + "id": "a08b565c-9a70-4781-8f34-c06dc653c97d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142382,7 +143577,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -142393,7 +143588,7 @@ } }, { - "id": "514bb5f3-d208-4eaf-9c05-ca14f181ed62", + "id": "27008864-46a5-4933-90ee-a4376ff117de", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -142425,7 +143620,7 @@ }, { "type": "any", - "value": "UNLOCK", + "value": "DELETE", "key": "usageType", "disabled": true, "description": { @@ -142446,7 +143641,7 @@ }, "response": [ { - "id": "a36ba275-ac23-481b-94b7-a595d1ddcb2d", + "id": "f0f50ec3-8aee-42bf-bb89-18e1e3a76198", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -142492,7 +143687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac9ecd05-876c-4a00-9836-f2a898c1ed23", + "id": "edefb20c-9f55-41c6-8e76-e6f4105d7098", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142533,12 +143728,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c19a09da-53fd-4410-a7b1-f1bb1f277935", + "id": "59e0088d-613a-4f61-b6b3-7970ca9d8ac8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142584,7 +143779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bef45a73-4607-47bb-b503-f3d42ba2d759", + "id": "f579e2fd-6b8c-493c-80c9-645d505b1e1a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142625,12 +143820,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34f54a8d-fbe0-4c10-8992-5488f24d2371", + "id": "e1e67cdc-7255-47ab-928a-aec84a096338", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142671,12 +143866,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bee825fb-5688-458f-8512-62449b2787ed", + "id": "4598f5e4-85eb-4e3c-b87d-6bf80dc295b2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142722,7 +143917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "022359a0-a097-4fee-a897-412312adffbe", + "id": "83be4d0b-fb63-44cd-a75f-1b34ba82fc90", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142763,7 +143958,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -142774,7 +143969,7 @@ } }, { - "id": "78672ac8-6c84-4808-a84d-fce1fbe87763", + "id": "00377460-c05c-4ac2-972c-6ff79ff7aa5e", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -142806,7 +144001,7 @@ }, { "type": "any", - "value": "UNLOCK", + "value": "DELETE", "key": "usageType", "disabled": true, "description": { @@ -142840,7 +144035,7 @@ }, "response": [ { - "id": "00a63831-c7af-4649-b08d-14d5d4616f54", + "id": "af0cd318-b025-4837-b2a9-cd4637b986f6", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -142899,7 +144094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9c92358-4ce6-4003-b01c-5d39b451569a", + "id": "9e50706d-9005-49c9-9b89-3b368e7dedf0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142953,12 +144148,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "358eb99e-5328-48f1-a847-083eb8ebdfb7", + "id": "0359f115-f69e-4bdd-ba54-948b84ed929f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143017,7 +144212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "790bed6f-48b1-40bb-96e6-bb3eafced280", + "id": "ff5b17dd-4321-4eb2-b748-68f60cccb4aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143071,12 +144266,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00bac8ed-fe34-471a-b149-85b53dd124a2", + "id": "123caf4a-16a5-4e22-b8cc-71edffcef8f6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143130,12 +144325,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4028c970-f8b8-4c17-96e2-de202827e3e7", + "id": "46b3214e-dbbd-44f4-b1d9-4dc67fb51815", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143194,7 +144389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07aa5a15-43d6-4c78-8fa7-fc02940cdff1", + "id": "7cf6135e-8e9d-4bc5-9765-dc457a60efc9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143248,7 +144443,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -143259,7 +144454,7 @@ } }, { - "id": "210aed56-5c27-45cc-94f5-8025e9ca2dde", + "id": "cd644655-a007-4dea-a02b-ccd788065fbb", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -143291,7 +144486,7 @@ }, { "type": "any", - "value": "UNLOCK", + "value": "DELETE", "key": "usageType", "disabled": true, "description": { @@ -143314,7 +144509,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -143325,7 +144520,7 @@ }, "response": [ { - "id": "7d332c27-1a33-4aad-b00c-eebd3bf4d32b", + "id": "f8394939-d16e-4ead-a736-8e69f26a362c", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -143362,7 +144557,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -143384,7 +144579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd540d1f-d856-4f46-ba8a-4e3c772b7879", + "id": "33595fe8-9172-4c74-8ca9-90da732f6cba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143421,7 +144616,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -143438,12 +144633,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1f93dc2-109a-4d3a-ae6a-50d1b59700d6", + "id": "32ff1732-9a81-453b-858a-81f9e3da8e64", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143480,7 +144675,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -143502,7 +144697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "218b98b5-e0a1-4c10-98dd-0e32da8c1a97", + "id": "47e63b08-302b-42dc-9f65-6f94478479ea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143539,7 +144734,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -143556,12 +144751,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76ed46f3-31ea-476e-b7d6-ad99246ed28f", + "id": "ca5569df-d5be-4688-b413-6dc8d38b6105", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143598,7 +144793,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -143615,12 +144810,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77f09b3f-b4b2-434b-b523-81e8f147eb3f", + "id": "22094278-8906-4dba-ac7b-887c7610540d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143657,7 +144852,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -143679,7 +144874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55ef899c-817b-40d3-9848-30a9798ec31e", + "id": "a8f88720-6a4e-42ac-afb7-7cc2731082b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143716,7 +144911,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -143733,7 +144928,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -143744,7 +144939,7 @@ } }, { - "id": "09575402-e559-4c3f-98fe-76368f1d7b0a", + "id": "28519756-3147-44ec-911e-e634c81ae019", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -143776,7 +144971,7 @@ }, { "type": "any", - "value": "UNLOCK", + "value": "DELETE", "key": "usageType", "disabled": true, "description": { @@ -143797,7 +144992,7 @@ }, "response": [ { - "id": "db785918-b395-46e4-bb2c-2503716a8785", + "id": "6f327c8c-ca83-4ce0-93f7-1ffa87230399", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -143833,7 +145028,7 @@ "_postman_previewlanguage": "text" }, { - "id": "821d5079-5c78-4424-9c49-7ea38dd767eb", + "id": "9640ffb2-600d-4971-b5cf-a435092bfc88", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143874,12 +145069,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c690b772-08f7-4016-9de0-48b8369b7232", + "id": "447c2e9c-a659-495f-84fc-9b6e6fcd5c7f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143925,7 +145120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab31c95e-776d-4167-b715-8d399bf9c52a", + "id": "02c8cf6d-a973-496f-ae41-12b49a9e2266", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143966,12 +145161,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04e90d89-3687-4a5b-8052-e05b77f6938f", + "id": "f35dccd9-3879-4d5a-a006-53357534e333", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144012,12 +145207,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c4097dc6-634f-4e45-9e6b-6e264a4f6199", + "id": "3475716b-7edf-4af1-8660-a2d13eb3389e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144063,7 +145258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e065afaf-dba5-473b-8677-eeca822a5733", + "id": "b12d759b-e52b-4bab-9166-49857615d2f6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144104,7 +145299,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -144115,7 +145310,7 @@ } }, { - "id": "1d014d66-9fe9-4a05-b515-fb044a5dc941", + "id": "757dda22-0d7f-41ef-9d31-e8293f2d9eab", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -144160,7 +145355,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CREATE_IDENTITY\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -144171,7 +145366,7 @@ }, "response": [ { - "id": "32ef933b-0d74-4df6-9572-6ed8e858d5bb", + "id": "cd6414a1-c7d3-4f52-8ed2-e5f8ff58c055", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -144208,7 +145403,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CREATE_IDENTITY\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -144225,12 +145420,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CREATE_IDENTITY\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ab2e60d-2a1b-47e2-bd1c-278b5a9e3c28", + "id": "105b8a2d-5432-455c-9b87-78f7f58ae25c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144267,7 +145462,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CREATE_IDENTITY\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -144284,12 +145479,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8c2a4c47-5fe0-481c-8ed5-8c1b520ba2a0", + "id": "7be77dff-8c09-4cd1-a30c-663e93d00108", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144326,7 +145521,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CREATE_IDENTITY\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -144348,7 +145543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8317ffe9-5928-4903-84e1-3a834b7d659d", + "id": "1d0a6738-6e29-457a-bb12-7467252d0a7a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144385,7 +145580,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CREATE_IDENTITY\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -144402,12 +145597,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63d72d21-6e19-4379-bcc0-1d70723481fa", + "id": "f058c381-eb33-4ea9-b854-926305b2b9c4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144444,7 +145639,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CREATE_IDENTITY\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -144461,12 +145656,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a192f0c7-b651-4edf-92d5-6e3d1fa5aa76", + "id": "a0081fdf-7ae5-48da-aab6-e0fa97a5ea07", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144503,7 +145698,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CREATE_IDENTITY\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -144525,7 +145720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e062d848-69ae-4076-8354-9b891b0b7c0f", + "id": "44164c7c-fa55-4599-af7b-5fcccc9fa2ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144562,7 +145757,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CREATE_IDENTITY\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", + "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DELETE\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"UNLOCK\",\n \"fields\": [\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n },\n {\n \"name\": \"\",\n \"transform\": {},\n \"attributes\": {},\n \"isRequired\": false,\n \"type\": \"\",\n \"isMultiValued\": false\n }\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -144579,7 +145774,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -144590,7 +145785,7 @@ } }, { - "id": "5d14de17-ab9b-4c7a-8c44-213b6c94de8b", + "id": "3680d9ed-7f4f-4d7e-bccf-99c2e93b5cde", "name": "Lists the Schemas that exist on the specified Source in IdentityNow.", "request": { "name": "Lists the Schemas that exist on the specified Source in IdentityNow.", @@ -144639,7 +145834,7 @@ }, "response": [ { - "id": "d96ee662-c553-4331-a9e6-0097f211c798", + "id": "698e2623-0c91-483a-8a41-b56f8ce815c1", "name": "The Schemas were successfully retrieved.", "originalRequest": { "url": { @@ -144689,12 +145884,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_DIRECT_PERMISSIONS_PROVISIONING\",\n \"TEMPLATE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"DIRECT_PERMISSIONS\",\n \"UNSTRUCTURED_TARGETS\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"BOOLEAN\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PROVISIONING\",\n \"SEARCH\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"BOOLEAN\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"NO_DIRECT_PERMISSIONS_PROVISIONING\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"STRING\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98816a5d-0d71-4954-907a-134a71c4c021", + "id": "401bb98b-8fce-49f9-a52b-89b544459882", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144749,7 +145944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8581081b-d1ce-4b1d-a41e-478dffb73a7e", + "id": "8754cbf7-8919-4055-80dc-e19a21db2ad0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144799,12 +145994,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0686af3-a82d-49fe-a481-5581385f4526", + "id": "936c8c06-2bac-4751-833d-473a1f2a1ae8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144854,12 +146049,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bbf680e1-1a6f-41d3-99cf-8c3c5b6090ae", + "id": "6b035fbc-8a2a-4492-a330-38c5101c8bdc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144914,7 +146109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f330db4-a35c-4406-9edd-4491d1e3a4fd", + "id": "b8896b92-ef8f-4fc1-b2f5-ad170b144d9e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144964,7 +146159,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -144975,7 +146170,7 @@ } }, { - "id": "84bf0f9f-1648-43d5-ac8c-102ad9a1d76d", + "id": "ef096d15-42ad-4260-9ca3-40a52dbe95ea", "name": "Creates a new Schema on the specified Source in IdentityNow.", "request": { "name": "Creates a new Schema on the specified Source in IdentityNow.", @@ -145016,7 +146211,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -145027,7 +146222,7 @@ }, "response": [ { - "id": "926740cf-9514-4813-89b0-f39c97525caf", + "id": "39285cfd-353b-46c6-aeb9-ee81db9cf979", "name": "The Schema was successfully created on the specified Source.", "originalRequest": { "url": { @@ -145063,7 +146258,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -145080,12 +146275,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27744610-69bd-4af1-9d3a-171fb254abe5", + "id": "9e8bdb9c-5588-417c-8695-1d24082c6204", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145121,7 +146316,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -145138,12 +146333,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f398a49f-46e7-414d-a1aa-162bd4f645d1", + "id": "014bd7cc-d79b-4e82-ad63-e8f7baf6cc7c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145179,7 +146374,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -145201,7 +146396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e12f73a-cecd-4a0a-bb99-8bca6cd29557", + "id": "7f147fda-8bbd-4a9e-8813-9d2919fbecdb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145237,7 +146432,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -145254,12 +146449,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "415af888-6051-4b02-a831-135937901b63", + "id": "38edd7af-6c76-4c18-95dc-4b857f27b26c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145295,7 +146490,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -145317,7 +146512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "767bd521-4453-4e56-a859-d6088cbc8b43", + "id": "1e9a8cec-f6bc-4fb2-8f5c-c4ea29aaa79b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145353,7 +146548,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -145370,7 +146565,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -145381,7 +146576,7 @@ } }, { - "id": "98b8ad23-9a2d-4bbd-a700-556ee6c9dcf8", + "id": "acf6197a-38b1-4055-9cef-8ea9be304388", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -145434,7 +146629,7 @@ }, "response": [ { - "id": "68d342b2-bd5c-4473-9184-da0cf739e57d", + "id": "363c26a0-c5fd-4613-bfc9-9c801bd2e68f", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -145475,12 +146670,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d874e7d1-f684-4d6b-bfda-e200a13fd9fe", + "id": "a8b1cf6b-b955-4626-ab67-c09e363b1a6a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145521,12 +146716,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a7e9b490-327b-4478-94e7-3cefe848f860", + "id": "e06e7ec0-f848-40d9-8b37-508274881dcd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145572,7 +146767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28832142-b475-4c16-9bc6-351c4c12167c", + "id": "dc95bf39-69d9-48c0-a565-d5612aaeb1f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145613,12 +146808,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5efbbc64-3ab0-45a7-bb94-35590ef6353a", + "id": "f62beeea-0b0d-4ca8-b712-b999c2485b0c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145659,12 +146854,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "200e23f0-7069-4e93-a32a-2f6f49d14075", + "id": "400c7be2-d2f3-48f5-9583-4bde05f6fec7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145710,7 +146905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05fdb09b-c488-4019-9cc8-3f255c5e9912", + "id": "1b744b43-19e2-471f-9bdb-35b61fe7dc38", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145751,7 +146946,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -145762,7 +146957,7 @@ } }, { - "id": "40f4f1ce-226c-4c1d-927f-1fc8681d0ebd", + "id": "b53c5512-2efb-499e-951a-e822f48fe816", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -145817,7 +147012,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -145828,7 +147023,7 @@ }, "response": [ { - "id": "23613d1e-a673-44a5-b9ec-9898e0ec5120", + "id": "3112215a-28e5-4bd9-8141-0539e22dce1a", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -145865,7 +147060,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -145882,12 +147077,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af109c77-0176-4d19-a379-a63724fef41a", + "id": "3121bb43-b11c-4aa9-aafc-054a362a0e45", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145924,7 +147119,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -145941,12 +147136,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eba44d64-4189-4034-8e85-73f57b25a626", + "id": "7d666819-a0a8-4a29-b5e0-d02a9f58d581", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145983,7 +147178,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146005,7 +147200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb022c22-2f88-4fa4-b620-8704b581ecab", + "id": "b222ad7a-7457-4c7a-954e-eef5cea2bb30", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146042,7 +147237,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146059,12 +147254,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "746665e5-4c53-4dc8-8fc1-2b5187efb85e", + "id": "add78805-02ba-4ab0-8268-be02a8e2d385", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146101,7 +147296,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146118,12 +147313,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "95221c24-88e7-45c1-ae1a-649680aefdb6", + "id": "7938acbf-5ef2-4756-8393-a52be0049a25", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146160,7 +147355,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146182,7 +147377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f5712f4-7c59-4074-9259-aa228685e8e1", + "id": "614a7eb2-ca72-4a8c-8e04-4f3e34e93b31", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146219,7 +147414,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -146236,7 +147431,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -146247,7 +147442,7 @@ } }, { - "id": "ed68da0e-50bb-441d-93d1-c8a9e5a8c26e", + "id": "e01bd00c-00b1-42ae-9a55-ec2a4df72209", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -146302,7 +147497,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -146313,7 +147508,7 @@ }, "response": [ { - "id": "8573e398-7e15-49f7-a7ce-45ff77cf1ac1", + "id": "11d95ab9-27f7-412e-8d0b-a3aec7170836", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -146350,7 +147545,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -146367,12 +147562,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "068a3fed-bb22-4292-9d59-6e5d7221514b", + "id": "5671cb2d-5d23-48e7-b5e7-ba6a6551bc22", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146409,7 +147604,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -146426,12 +147621,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d18e01a1-12ef-4d74-b916-02986d17e7d3", + "id": "b78b516c-73fa-47d3-a901-138ee49fcff9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146468,7 +147663,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -146490,7 +147685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1421b5f-bcd8-4587-9ce3-a5da5c799a63", + "id": "1cc86b8d-270c-4614-b236-2a59ce8b72c5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146527,7 +147722,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -146544,12 +147739,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2aec2534-1b63-46a2-903a-21bd48146152", + "id": "00bedef8-0580-46f2-b9e3-15ef06854724", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146586,7 +147781,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -146603,12 +147798,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4461907-a8c2-4dc9-b06a-6ceddf2424cd", + "id": "596cc7ee-1cda-4514-a85f-1b0e83a9ced7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146645,7 +147840,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -146667,7 +147862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b59d6861-9d0a-4412-8226-e354ea10efd7", + "id": "b5eea0fc-f65f-4510-85ca-1b7a78fb0726", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146704,7 +147899,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -146721,7 +147916,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -146732,7 +147927,7 @@ } }, { - "id": "b78f8716-aef3-432c-a1ad-f69929bebcdb", + "id": "a207a506-a8e0-44f4-9e70-3d2bd31db5eb", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -146782,7 +147977,7 @@ }, "response": [ { - "id": "d3047526-398a-4945-a04f-d7f4f522d165", + "id": "b4d7cf5d-1fa4-4f84-bb7c-5ad5c12b89ba", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -146818,7 +148013,7 @@ "_postman_previewlanguage": "text" }, { - "id": "cd32cfcd-c7c5-4ea0-9c28-958aec559bb8", + "id": "54982e2b-e9d7-4c64-96f7-90b25974942f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146859,12 +148054,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a95b5865-f2bd-4020-a97e-1149e020d90d", + "id": "c928c854-7ff3-41a0-8c76-059ddac86d3e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146910,7 +148105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94ba8e57-ca59-49e4-ba9b-a2550afc4015", + "id": "ebab595c-4c3c-4b4b-9d37-5dd872bfead1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146951,12 +148146,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bcaba49f-5993-48c3-a54d-7f8d52c3bdc0", + "id": "39d2fc85-551f-47be-894a-2fc8236b22dc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146997,12 +148192,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c952bbb-e10d-457f-a5ff-43f4253a9959", + "id": "9a8a9f6c-0434-48ca-8001-46333ee402db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147048,7 +148243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13737718-7146-4599-9961-a9a5831801fd", + "id": "48588978-60a6-4ba2-871e-ea7f66fed1a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147089,7 +148284,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -147100,7 +148295,7 @@ } }, { - "id": "22a27df3-d5c9-49fa-a682-4c342d9d5d31", + "id": "d657f57f-31f2-41fb-bdb2-bd6780fd89c1", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -147140,7 +148335,7 @@ }, "response": [ { - "id": "179a95da-6d54-4f59-8690-e7f46bf07ca1", + "id": "c8531731-07e8-46e0-b123-fed8e28d54ba", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -147186,7 +148381,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fa3c293f-870f-40eb-b9e0-b640c73d03f4", + "id": "c9871ecb-8e95-4f43-af33-0e2b91fcf0b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147227,12 +148422,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c501847c-2d5f-435e-8fe5-ec49248e0b97", + "id": "8f5666ee-c43e-4d86-ac01-918012e200a2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147278,7 +148473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f417b2-92ed-4274-bd7c-58553853b046", + "id": "d75f7ed1-f028-430e-97db-db895940843d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147319,12 +148514,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "feed8579-3c18-4acb-969b-c862566784bc", + "id": "78b82a6e-c8f1-45a4-a574-d9f75321d71d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147365,12 +148560,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d2cb84ea-eb67-489e-a491-1d8ef4bf9985", + "id": "8d53eaf8-1284-41d6-a491-c87c202f7715", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147416,7 +148611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "920e4031-27d2-4068-ab32-f11ec9da85f7", + "id": "8299fb0f-f976-4f33-9674-cd075818ae42", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147457,7 +148652,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -147468,7 +148663,7 @@ } }, { - "id": "044f8e0c-9ab1-451f-ba16-f20e8cc76733", + "id": "f8a8cbfb-6fbb-4ecc-b6a2-c99b8bbd3294", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -147528,7 +148723,7 @@ }, "response": [ { - "id": "ca0bd713-5897-40f1-9356-ce182624d4ce", + "id": "f8051bf2-3ca1-4c19-aad8-248456bd1711", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -147586,12 +148781,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5fd98e82-aeaa-4c19-a773-0a80e43ad03b", + "id": "105a34d9-9e46-45ff-848f-ab98400aa776", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147649,12 +148844,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5224e12-161b-4b71-9e46-ad21552fd311", + "id": "ff18dc3e-2340-406c-ba50-91ea5b85b2e1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147717,7 +148912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "432e0986-d4a6-455f-9b68-f54730ae08b5", + "id": "919abb35-e1f7-45b3-82ec-4bb80e58e2c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147775,12 +148970,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8702406a-78cf-4b5f-b447-9caacb3ffef4", + "id": "ed56425d-2726-41be-82f4-b68db1c258c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147843,7 +149038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "966c9a67-e2f0-4917-b3a8-705e48cf7ca9", + "id": "8986544e-3c22-4f5e-8c56-e080763b5885", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147901,7 +149096,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -147912,7 +149107,7 @@ } }, { - "id": "b957d41d-213d-46e8-b29b-99b1dfc5eba7", + "id": "0a250a8b-e2d2-4930-8a4c-947c5b078d93", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -147962,7 +149157,7 @@ }, "response": [ { - "id": "72f4d57f-cdd2-485b-8fd7-06be4c1da17e", + "id": "87fc204e-4b07-4b22-866c-074c794f6d5e", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -148018,7 +149213,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9984488f-9708-47b0-acd2-90312063c49e", + "id": "bbf42ed4-5069-49b5-a3ab-69a8ecaead48", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148069,12 +149264,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e957440f-5dc2-48bb-be9c-ca6e4d6ced0e", + "id": "f4c67a51-e847-42e9-9d54-2f3e91c16556", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148130,7 +149325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12926ba0-62f3-4922-b829-f5a6ac4d1b70", + "id": "52999a99-c85c-49cb-aaa1-b46e534eb178", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148181,12 +149376,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ddceb92-2214-427d-8d53-42f629a12a70", + "id": "745fbbfc-0ea2-4015-b877-ca5506c2a6c2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148237,12 +149432,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dfc0de73-f034-4cf8-87d8-6ee5f847d90e", + "id": "48d4f9ea-8cef-4f3d-87bb-c068de88af0c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148298,7 +149493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c721d1d-2183-4eb2-990f-9fd3e844b96f", + "id": "164d9c50-f04b-4bcc-a5e8-3415fbe97e61", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148349,7 +149544,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -148360,7 +149555,7 @@ } }, { - "id": "c8b5433a-1b6b-4468-91f2-dbf05c9ed6d2", + "id": "dbf5acd5-53d8-4599-9943-b51cfd303f93", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -148430,7 +149625,7 @@ }, "response": [ { - "id": "c20722f4-55c2-47aa-8583-eecb7ef7df41", + "id": "36f8eb66-4b58-41ef-adb9-8b1d397b558e", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -148498,12 +149693,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SHAREPOINT_TARGET\",\n \"NO_AGGREGATION\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"SEARCH\",\n \"ENABLE\"\n ],\n \"configuration\": {},\n \"attributes\": [\n {\n \"name\": \"\",\n \"type\": \"LONG\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n },\n {\n \"name\": \"\",\n \"type\": \"INT\",\n \"schema\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"isMulti\": false,\n \"isEntitlement\": false,\n \"isGroup\": false\n }\n ],\n \"created\": \"\",\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43205d24-c452-4c16-b7a7-e5703d869ddf", + "id": "f2b09c7f-2808-42cf-a0df-6f10b85f68e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148571,12 +149766,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c2a6e597-a3ec-45da-a1a3-1e64b61ab802", + "id": "21140ee9-ff89-45cd-aa0c-5b9dce5d114c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148649,7 +149844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f45ba1c7-3390-4afc-a220-ba9b83f325a1", + "id": "23fc168a-82aa-467a-9bb9-19b2ad4e1bfc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148717,12 +149912,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0cac6ef8-ab13-4678-a543-455a99392423", + "id": "6411500a-83b1-4b56-b2c6-5de0eca7e9e0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148795,7 +149990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ba1ae3e-5ce8-4076-a80a-6d4e2c7a512a", + "id": "98e2497c-5902-4eac-abd8-3ca8017e74ce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148863,7 +150058,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -148874,7 +150069,7 @@ } }, { - "id": "daa6155c-c1df-4dda-8bdc-9dd16ef64f22", + "id": "597d457a-5c2e-42c8-a3d9-a9b8fb407cad", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -148933,7 +150128,7 @@ }, "response": [ { - "id": "40099472-d97f-4af0-9e92-8159f176665c", + "id": "e565e8de-d917-4c2f-95c6-605d29c6523f", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -148990,12 +150185,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"GROUPS_HAVE_MEMBERS\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", + "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"connector\": \"\",\n \"id\": \"\",\n \"description\": \"\",\n \"cluster\": {\n \"name\": \"\",\n \"id\": \"\",\n \"type\": \"CLUSTER\"\n },\n \"accountCorrelationConfig\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"accountCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"managerCorrelationMapping\": {\n \"accountAttribute\": \"\",\n \"identityAttribute\": \"\"\n },\n \"managerCorrelationRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"beforeProvisioningRule\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"schemas\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"features\": [\n \"NO_AGGREGATION\",\n \"SEARCH\"\n ],\n \"type\": \"\",\n \"connectorClass\": \"\",\n \"connectorAttributes\": {},\n \"deleteThreshold\": \"\",\n \"authoritative\": false,\n \"managementWorkgroup\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"healthy\": false,\n \"status\": \"\",\n \"since\": \"\",\n \"connectorId\": \"\",\n \"connectorName\": \"\",\n \"connectionType\": \"\",\n \"connectorImplementationId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f32be915-ba3d-4bf2-bd6e-6553108eaff0", + "id": "50d48499-008a-4363-bc57-7a3d85366a64", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149052,12 +150247,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "310db82d-168d-47d6-96d5-e07011b064c7", + "id": "358616b8-5d30-4f5b-accb-931ba7f3d1f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149119,7 +150314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02ed3bc3-8ccc-4f3d-a32d-c940a9885aca", + "id": "6a62d2b5-dc40-4145-a2d7-ec4fc9e2c509", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149176,12 +150371,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b7da70d-bb82-466d-a8ea-329c14bb289c", + "id": "c666581e-fd05-4941-80e0-b4eef2a9a1c9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149243,7 +150438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "747d3005-9a89-498f-92e4-45926c17bd43", + "id": "c30bbb5d-62b5-4763-9027-b8442033a4b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149300,7 +150495,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -149311,7 +150506,7 @@ } }, { - "id": "4119417c-23ac-4b19-9c8a-26a82afe3cd3", + "id": "197ebf4b-78b5-47d6-b4fb-1b8691a257eb", "name": "Synchronize single source attributes.", "request": { "name": "Synchronize single source attributes.", @@ -149353,7 +150548,7 @@ }, "response": [ { - "id": "0da597b3-7346-4526-92cf-3286a4389141", + "id": "0060885e-45b3-49ce-ad90-4840fd6c31c2", "name": "A Source Sync job", "originalRequest": { "url": { @@ -149393,12 +150588,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"status\": \"IN_PROGRESS\",\n \"payload\": {\n \"type\": \"\",\n \"dataJson\": \"\"\n }\n}", + "body": "{\n \"id\": \"\",\n \"status\": \"ERROR\",\n \"payload\": {\n \"type\": \"\",\n \"dataJson\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a90632d7-1b97-42f3-a467-7e0ad6766625", + "id": "9a654808-df77-4cae-be34-d78b4b20c05d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149438,12 +150633,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a2ebfaab-5cad-4915-b9c3-944ff7c8559b", + "id": "58b4f49f-2062-4296-8ff8-e07ce4874dec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149488,7 +150683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e32fa77-5339-4764-8edf-1d3c3be8f65f", + "id": "1ac491f8-39ee-42bf-b0ed-85a4ee8438af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149528,12 +150723,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea24a4eb-b938-4602-9ea2-3204a138291c", + "id": "075f0609-43de-4ae3-be44-456eb63b85a5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149573,12 +150768,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16a0d845-90a2-4157-9337-1b596c36f1fe", + "id": "81448711-b527-432e-a93a-7962f7774520", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149623,7 +150818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3eb427a-2400-45f6-b5fe-10b28a0e1fae", + "id": "67613a07-4148-49d3-a51e-1e0d1521ec6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149663,7 +150858,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -149674,7 +150869,7 @@ } }, { - "id": "2ec8a511-e965-4cc5-8b0f-a39c234f2822", + "id": "5e4ec0a3-131a-4809-9799-8b28d78d2c3d", "name": "Get Source Entitlement Request Configuration", "request": { "name": "Get Source Entitlement Request Configuration", @@ -149710,7 +150905,7 @@ }, "response": [ { - "id": "a429863e-6895-478c-a4b1-8b941b954fd4", + "id": "c63f6c52-38e1-464e-a4bb-ebd11c461530", "name": "Source Entitlement Request Configuration Details.", "originalRequest": { "url": { @@ -149750,12 +150945,12 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80f9b486-e6ae-4c53-a384-dce8e1661ae7", + "id": "a5b3ba41-131f-46ef-b50c-e94b92efb794", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149795,12 +150990,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2c92363f-bc3d-4441-a322-1cbae9f4f37a", + "id": "86232142-775b-4e80-9dd1-fb89e889aebd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149845,7 +151040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d81d49de-4b9e-4571-ae79-aa2a4b0d0ad0", + "id": "47dc5df5-8188-497a-896d-1da2df945790", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149885,12 +151080,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "957472f5-62c9-45f7-a9a9-a39176dd2c30", + "id": "8055867e-5049-4175-b0e6-09014ebba34c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149935,7 +151130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd00876b-ef74-4747-a0d7-e079984c25f2", + "id": "bb7872f1-1077-44ec-aee6-99b75b66015a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149975,7 +151170,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -149986,7 +151181,7 @@ } }, { - "id": "27fc3a4d-99a3-42a4-b255-4a30d089e383", + "id": "23fa109b-41f4-45b6-ae86-1173e90ac226", "name": "Update Source Entitlement Request Configuration", "request": { "name": "Update Source Entitlement Request Configuration", @@ -150024,7 +151219,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150035,7 +151230,7 @@ }, "response": [ { - "id": "1a058347-0963-498e-993e-d53e29d9b262", + "id": "9a4ca0f2-1d29-4c23-842f-1e6ff6a64ebf", "name": "Source Entitlement Request Configuration Details.", "originalRequest": { "url": { @@ -150071,7 +151266,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150088,12 +151283,12 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b20fc49-fb9c-4162-800d-c6ae228df20c", + "id": "da3bed1c-7b46-4282-b2f4-ba753cb075df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150129,7 +151324,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150146,12 +151341,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92f52c73-0684-4e14-86bb-6533edb71063", + "id": "c8b2ce60-9af1-4d8f-bf20-5ad050bdabcf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150187,7 +151382,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150209,7 +151404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e4bbec9-11e4-4f13-a176-ab2d82925315", + "id": "7d0946d1-063a-4bc3-9e03-ad419586eb21", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150245,7 +151440,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150262,12 +151457,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56640eb2-5a8f-404e-a7e9-9e2bb6e65cdb", + "id": "3d602c3b-a59b-469d-a62f-9a906796446f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150303,7 +151498,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150325,7 +151520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf4257a5-6c9c-4693-a0a2-3374ac4ef2b5", + "id": "b9472a76-0d8b-4e20-a5f6-721ac03e8201", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150361,7 +151556,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", + "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150378,7 +151573,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -150395,7 +151590,7 @@ "description": "Import and export configuration for some objects between tenants.", "item": [ { - "id": "b7248975-3bf6-46c4-a3ce-d03ea0605018", + "id": "61669e03-39e4-4d35-8a4d-9de056f29c90", "name": "Initiates configuration objects export job", "request": { "name": "Initiates configuration objects export job", @@ -150427,7 +151622,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"velit\",\n \"excludeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"ACCESS_PROFILE\"\n ],\n \"includeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_PROFILE\"\n ],\n \"objectOptions\": {\n \"deserunt28_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"exercitation5d_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"pariatur_b4c\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"commodo consectetur\",\n \"excludeTypes\": [\n \"NOTIFICATION_TEMPLATE\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"nisi_e\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"Ut_5_9\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"ullamco_7a\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150438,7 +151633,7 @@ }, "response": [ { - "id": "df099665-0fed-4d3c-97f5-41403eae5e3a", + "id": "5d301bbf-87bc-4a55-a07e-f6a885b0fe2d", "name": "Export job accepted and queued for processing.", "originalRequest": { "url": { @@ -150473,7 +151668,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"velit\",\n \"excludeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"ACCESS_PROFILE\"\n ],\n \"includeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_PROFILE\"\n ],\n \"objectOptions\": {\n \"deserunt28_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"exercitation5d_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"pariatur_b4c\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"commodo consectetur\",\n \"excludeTypes\": [\n \"NOTIFICATION_TEMPLATE\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"nisi_e\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"Ut_5_9\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"ullamco_7a\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150490,12 +151685,12 @@ "value": "application/json" } ], - "body": "{\n \"jobId\": \"\",\n \"status\": \"IN_PROGRESS\",\n \"type\": \"EXPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", + "body": "{\n \"jobId\": \"\",\n \"status\": \"COMPLETE\",\n \"type\": \"IMPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d984ff8b-6e99-4298-8b84-c1c7f37a4eae", + "id": "83cdd3cd-f3fe-42cb-9917-0e4cc58fb154", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -150530,7 +151725,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"velit\",\n \"excludeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"ACCESS_PROFILE\"\n ],\n \"includeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_PROFILE\"\n ],\n \"objectOptions\": {\n \"deserunt28_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"exercitation5d_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"pariatur_b4c\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"commodo consectetur\",\n \"excludeTypes\": [\n \"NOTIFICATION_TEMPLATE\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"nisi_e\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"Ut_5_9\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"ullamco_7a\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150547,12 +151742,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdc169f6-ead8-4f00-a6c5-7580bc46ac29", + "id": "fdaeebda-f8b3-4065-ad8d-e05a8a4a9b15", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150587,7 +151782,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"velit\",\n \"excludeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"ACCESS_PROFILE\"\n ],\n \"includeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_PROFILE\"\n ],\n \"objectOptions\": {\n \"deserunt28_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"exercitation5d_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"pariatur_b4c\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"commodo consectetur\",\n \"excludeTypes\": [\n \"NOTIFICATION_TEMPLATE\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"nisi_e\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"Ut_5_9\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"ullamco_7a\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150609,7 +151804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e3590fa-b4d4-46fb-9a73-b6a590355193", + "id": "ceea3cbe-1f6e-487a-901f-b2a0d6c030a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150644,7 +151839,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"velit\",\n \"excludeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"ACCESS_PROFILE\"\n ],\n \"includeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_PROFILE\"\n ],\n \"objectOptions\": {\n \"deserunt28_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"exercitation5d_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"pariatur_b4c\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"commodo consectetur\",\n \"excludeTypes\": [\n \"NOTIFICATION_TEMPLATE\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"nisi_e\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"Ut_5_9\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"ullamco_7a\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150661,12 +151856,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "75cd68a5-d994-41d6-8c69-78fa7f6c9149", + "id": "c6eea714-e602-49bd-9733-0666a8d73957", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150701,7 +151896,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"velit\",\n \"excludeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"ACCESS_PROFILE\"\n ],\n \"includeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_PROFILE\"\n ],\n \"objectOptions\": {\n \"deserunt28_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"exercitation5d_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"pariatur_b4c\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"commodo consectetur\",\n \"excludeTypes\": [\n \"NOTIFICATION_TEMPLATE\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"nisi_e\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"Ut_5_9\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"ullamco_7a\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150718,12 +151913,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0fcdfd0-268b-4ed5-b200-3f102e8ae875", + "id": "3267359a-b3f5-4ad5-a3cf-919351b2381c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150758,7 +151953,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"velit\",\n \"excludeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"ACCESS_PROFILE\"\n ],\n \"includeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_PROFILE\"\n ],\n \"objectOptions\": {\n \"deserunt28_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"exercitation5d_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"pariatur_b4c\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"commodo consectetur\",\n \"excludeTypes\": [\n \"NOTIFICATION_TEMPLATE\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"nisi_e\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"Ut_5_9\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"ullamco_7a\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150780,7 +151975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e619b287-4558-437e-87a7-f192f4e7876c", + "id": "4bc1946f-46b7-443e-b6e7-73adeb63be02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150815,7 +152010,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"velit\",\n \"excludeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"ACCESS_PROFILE\"\n ],\n \"includeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"ACCESS_PROFILE\"\n ],\n \"objectOptions\": {\n \"deserunt28_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"exercitation5d_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"pariatur_b4c\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"commodo consectetur\",\n \"excludeTypes\": [\n \"NOTIFICATION_TEMPLATE\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"PUBLIC_IDENTITIES_CONFIG\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"nisi_e\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"Ut_5_9\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"ullamco_7a\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -150832,7 +152027,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -150843,7 +152038,7 @@ } }, { - "id": "5d614f08-0562-4f0d-8717-8982c6835e50", + "id": "07c92138-d42e-481e-b8fe-c7a3a0fbdd06", "name": "Get export job status", "request": { "name": "Get export job status", @@ -150885,7 +152080,7 @@ }, "response": [ { - "id": "f423972a-c6aa-4e18-9fb9-4e97af4a0dc6", + "id": "cd0a55f5-1e70-45fd-8140-d9d2b10d680d", "name": "Export job status successfully returned.", "originalRequest": { "url": { @@ -150925,12 +152120,12 @@ "value": "application/json" } ], - "body": "{\n \"jobId\": \"\",\n \"status\": \"IN_PROGRESS\",\n \"type\": \"EXPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", + "body": "{\n \"jobId\": \"\",\n \"status\": \"COMPLETE\",\n \"type\": \"IMPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "185b0865-fb84-4f78-8f0e-9bc7d3aa331c", + "id": "0027a9b8-4112-4d2a-b01e-06ed9c73d1c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150970,12 +152165,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36a75a0c-aa25-4c6e-968e-6d945a71429d", + "id": "7eddaaae-8a37-4816-b5b0-db55709903c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151020,7 +152215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abb8d3da-31a3-4249-ac32-5b52956dab83", + "id": "5267362a-c7dc-4bd0-bfb0-3541aa16dd05", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151060,12 +152255,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4322412a-7a21-497c-9a31-3f425ca2e676", + "id": "7282c9b8-c695-43e2-a12e-6373c7f377be", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151105,12 +152300,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4f75fb0-a82c-4a5d-9254-ea2257592987", + "id": "c0e29246-c357-44d8-8db8-2a1b4789c5ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151155,7 +152350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a7a5232-a47b-46c8-849a-a2b3473fb07f", + "id": "0840758c-6ec3-4324-aef4-de0830496f40", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151195,7 +152390,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -151206,7 +152401,7 @@ } }, { - "id": "bbc02233-9622-408c-8b26-0a6f8a14f9ec", + "id": "e12e4d91-36d6-49b9-9c4a-8c0c0d2e5cb8", "name": "Download export job result.", "request": { "name": "Download export job result.", @@ -151249,7 +152444,7 @@ }, "response": [ { - "id": "040888ab-471c-40fa-86c3-2b2279027428", + "id": "83dcb5c4-8971-473c-8050-5c5633e8d7d3", "name": "Exported JSON objects.", "originalRequest": { "url": { @@ -151290,12 +152485,12 @@ "value": "application/json" } ], - "body": "{\n \"version\": \"\",\n \"timestamp\": \"\",\n \"tenant\": \"\",\n \"description\": \"\",\n \"options\": {\n \"excludeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"ACCESS_PROFILE\"\n ],\n \"includeTypes\": [\n \"AUTH_ORG\",\n \"LIFECYCLE_STATE\"\n ],\n \"objectOptions\": {\n \"aliquab1\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"ut_d7\": true\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"aliqua_cb3\": \"veniam ad ipsum\",\n \"commodo__\": \"fugiat magna reprehenderit\"\n }\n }\n ]\n}", + "body": "{\n \"version\": \"\",\n \"timestamp\": \"\",\n \"tenant\": \"\",\n \"description\": \"\",\n \"options\": {\n \"excludeTypes\": [\n \"ACCESS_REQUEST_CONFIG\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"includeTypes\": [\n \"IDENTITY_PROFILE\",\n \"ATTR_SYNC_SOURCE_CONFIG\"\n ],\n \"objectOptions\": {\n \"Excepteur_97_\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"minim99\": \"eiusmod cupidatat ipsum\"\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"deseruntd5\": 82874499.60480732,\n \"Duis_72f\": -71230968.11019579\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0f1514b4-8991-4d39-86e4-ebeb72d6cc23", + "id": "ffe5f277-97c5-4625-9f67-33174c38b7de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151336,12 +152531,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db31bc33-4e72-40d8-b458-df4876220206", + "id": "1e9df593-cbf4-4e91-a9d4-bba7ab0fe8c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151387,7 +152582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75b12b60-d020-46d8-a15c-c2c3ac5dc8e8", + "id": "3ec8abcc-38c0-4cc6-b7ca-094d6106e5c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151428,12 +152623,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cab20781-4348-47d8-9ae2-396db46b4356", + "id": "faaa92e1-6560-4ec1-b39a-e77464ef26a2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151474,12 +152669,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "272c28c4-ddf9-4bde-8d09-233fface2075", + "id": "fd4e1e99-8d65-412f-aba9-ee62f29cc252", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151525,7 +152720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6337b01b-5b1d-4928-9e43-94e017f3ba31", + "id": "fa944dc6-f70d-4bb3-8a10-edb3b98f604e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151566,7 +152761,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -151577,7 +152772,7 @@ } }, { - "id": "d23f160f-bba6-45ff-8f1e-e94a956b5630", + "id": "1584195a-7c57-4eb7-a849-d0e1b2fce3a0", "name": "Initiates configuration objects import job", "request": { "name": "Initiates configuration objects import job", @@ -151643,7 +152838,7 @@ }, "response": [ { - "id": "a681200d-6f3f-4308-b15d-8734593aa055", + "id": "974d3ce0-1c79-4577-955a-59c1a4ee2bc3", "name": "Import job accepted and queued for processing.", "originalRequest": { "url": { @@ -151718,12 +152913,12 @@ "value": "application/json" } ], - "body": "{\n \"jobId\": \"\",\n \"status\": \"IN_PROGRESS\",\n \"type\": \"EXPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", + "body": "{\n \"jobId\": \"\",\n \"status\": \"COMPLETE\",\n \"type\": \"IMPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4c210b8-4a5b-433e-a8ef-4e7b41147e3d", + "id": "7136c584-ca27-4415-ba54-bcf408124fbb", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -151798,12 +152993,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8332fc59-c4f9-4387-9af4-e0a32bf7ef64", + "id": "d4259349-a11c-42c0-999e-9d64a343ccb1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151883,7 +153078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff5a5267-c8ee-48dc-be4c-33b33a3d1cab", + "id": "8d7cbcc3-3c27-4a49-9072-63fcf0c84696", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151958,12 +153153,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1d0d2bb-0f6f-44ee-b1f2-555f5865a18c", + "id": "63825ad5-4212-4b67-956b-664cedb7ccb2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -152038,12 +153233,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "784fc9eb-c3f0-43f8-ab76-70cf907b05af", + "id": "0a71ef1c-6523-4c6b-a7c0-bcb220b49b77", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152123,7 +153318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86ea9ebd-4f7f-4571-a3cd-6ac856c9170e", + "id": "1d4d5bda-1693-41b0-9188-15b12c689316", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152198,7 +153393,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -152209,7 +153404,7 @@ } }, { - "id": "ae4640db-4794-443b-bdc4-5f511811219f", + "id": "e92595a5-4325-4297-8091-8289739a4c3e", "name": "Get import job status", "request": { "name": "Get import job status", @@ -152251,7 +153446,7 @@ }, "response": [ { - "id": "fe0f4a93-892e-412e-b740-7ce43a5780c7", + "id": "64a91df5-d1b2-49c3-8043-e4531357e8c9", "name": "Import job status successfully returned.", "originalRequest": { "url": { @@ -152291,12 +153486,12 @@ "value": "application/json" } ], - "body": "{\n \"jobId\": \"\",\n \"status\": \"IN_PROGRESS\",\n \"type\": \"EXPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", + "body": "{\n \"jobId\": \"\",\n \"status\": \"COMPLETE\",\n \"type\": \"IMPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e50c6bb-676e-48e9-896c-2885733a3651", + "id": "fff7e0c6-3785-49fa-9a47-12f8f41bb686", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152336,12 +153531,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "155b605f-ed47-41ed-98b2-c9734b2ebf8b", + "id": "a9c8ee48-86fa-4172-9ccd-249c9bbc1974", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152386,7 +153581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7ee66e8-0587-45d7-82ed-a8147ef89e52", + "id": "a3f29e87-31d6-4113-b564-1e778d112c76", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152426,12 +153621,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ac46583-b6b5-446a-ad7f-43eed5b7f203", + "id": "8295a47b-a67e-4261-a9c8-b1911bd77b59", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -152471,12 +153666,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c109c3d5-e9a4-43de-87ea-4411c014e825", + "id": "a03dc116-e045-430c-b360-61a918f3a691", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152521,7 +153716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d7f1c43-609d-42d9-b52c-a39c510b29a0", + "id": "4fb69284-3eb0-4809-bbe0-8855d80994da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152561,7 +153756,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -152572,7 +153767,7 @@ } }, { - "id": "b9bf4abe-0a5f-4a1a-ae62-411d7066207d", + "id": "a9839201-5d4d-46a6-aa6c-ea1f53ed6c48", "name": "Download import job result", "request": { "name": "Download import job result", @@ -152615,7 +153810,7 @@ }, "response": [ { - "id": "fd79524f-8fca-41a4-8a3e-eefcbb3edd4b", + "id": "05dc2ba5-2066-4935-8cf8-d62bdaed499a", "name": "Import results JSON object, containing detailed results of the import operation.", "originalRequest": { "url": { @@ -152656,12 +153851,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": {\n \"tempor_f\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"in__8\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"sit9_6\": {},\n \"Lorem_7\": {},\n \"exercitation_0c0\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"proident_03\": {},\n \"doe\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"occaecat_a1\": {},\n \"consequat63_\": {},\n \"Ut_b6d\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"dolor_00\": {},\n \"adipisicing_fb\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"reprehenderit_a5\": {},\n \"do_73\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"commodo_f37\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"eu5\": {},\n \"cupidatat9\": {},\n \"sunt9ec\": {},\n \"enim_0f\": {},\n \"in_90\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"Duisf\": {},\n \"culpa286\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"ullamco_bc6\": {},\n \"veniam9f\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"ipsum_6\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"pariaturbe9\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"dolore_d\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"veniam0\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"dolore_4dc\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"voluptate_9_0\": {},\n \"est62\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"doloree\": {},\n \"ad1e\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"fugiat1\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"velit37\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"velit_c7c\": {},\n \"enim_7e\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"proident_86\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"dolore_17_\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"irure_3f\": {},\n \"in9ff\": {},\n \"adb8\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"commodo9c2\": {},\n \"utd1e\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"irure__\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"do8\": {},\n \"essef\": {},\n \"nisi_3\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"consectetura\": {},\n \"reprehenderit_cc\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n },\n \"exportJobId\": \"\"\n}", + "body": "{\n \"results\": {\n \"elit_5b\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"id9\": {},\n \"utf\": {},\n \"et_\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"id_3\": {},\n \"Ut96\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"culpa_c\": {},\n \"Lorem1b8\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"este5\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"exercitation_d27\": {},\n \"reprehenderit889\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"nostrud_5\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"laborum3_9\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"tempor_a76\": {},\n \"ut73\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"ut__f\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"et_59\": {},\n \"proident794\": {},\n \"do_6b\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"consectetur90a\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"sit220\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"et_a5\": {},\n \"elit_728\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"eu6c9\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"laboris977\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"consecteturef\": {},\n \"ex_43\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"in5\": {},\n \"sint_6\": {},\n \"fugiat100\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"esse85\": {},\n \"proident_0\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"cillum2_9\": {},\n \"sint8\": {},\n \"elit_904\": {},\n \"anim9b\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"officia_f\": {},\n \"consecteturb1e\": {},\n \"velit_7d9\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n },\n \"exportJobId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ce65575a-17af-4d0b-969d-7303637e7c33", + "id": "da4b25ec-bfbb-4b04-b5cb-09c93adcd49c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152702,12 +153897,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8244462-1db9-463d-85e2-c12bc6fb743f", + "id": "72d27814-3bba-4587-a2da-6208e5f51a6b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152753,7 +153948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dcd84a2-30f6-44f7-9219-56c35e325dde", + "id": "c73f0c5d-dc04-4e2a-8af8-3b7dbb133d38", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152794,12 +153989,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eab88a63-c14b-4e8b-bf4d-196ebdcc8472", + "id": "e5ba4aed-d23e-4903-8ecf-33d1f739ab37", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -152840,12 +154035,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f68139a9-8c5f-4090-b134-c68f5dc79ae2", + "id": "81162c1a-e3f7-408f-b195-cb32b18da638", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152891,7 +154086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b3fca6d-22b5-4850-8f3f-cc36a3951d0f", + "id": "7c2dc85f-fb03-49b6-8fcc-6be06d0aed98", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152932,7 +154127,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -152943,7 +154138,7 @@ } }, { - "id": "7db109e7-eb6c-4ba4-93c2-787b3a461908", + "id": "9f58a694-e91a-42cf-83ba-e9b1ef69ffcc", "name": "Get config object details", "request": { "name": "Get config object details", @@ -152973,7 +154168,7 @@ }, "response": [ { - "id": "37130b04-5070-43e2-b435-183a96bafcf4", + "id": "5a8cc597-a266-447b-a987-27989528be7d", "name": "Object configurations returned successfully.", "originalRequest": { "url": { @@ -153017,7 +154212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96ff98d2-121c-47fd-aa99-2e8c5a79e1b9", + "id": "81d1861b-7947-434e-927a-465d952b5ac6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153056,12 +154251,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44ed1982-41a4-43bd-8775-b72aa2416132", + "id": "60c22f4e-1da7-4427-beb0-4536aa809248", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153105,7 +154300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70629303-a0f3-4d24-af05-7eae27d11acc", + "id": "4d516d47-ce28-424d-aa2c-0531e53e3bb1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153144,12 +154339,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "934c6f58-516c-43d6-9545-1020b7623d5d", + "id": "05184bab-d781-44b3-bb95-c1db7fdaa184", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153188,12 +154383,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6a0a8c53-55c6-4c17-95f5-c57c922914c9", + "id": "bed8f95b-c78e-4c96-b495-5e2a4148614f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153237,7 +154432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66826a57-cd4f-494f-bf35-c2cdb41447ca", + "id": "0eb5a14d-6391-4f06-9946-4af321088400", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153276,7 +154471,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -153293,7 +154488,7 @@ "description": "", "item": [ { - "id": "32f7b10f-9f30-4908-b40e-750ab78dea27", + "id": "6b09c4c7-1a5d-44bc-b8bf-cb53ba62238f", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -153359,7 +154554,7 @@ }, "response": [ { - "id": "dc2fd5ed-c52b-4f53-af15-c5081c1972a7", + "id": "5e715d43-8846-427b-bd1c-58ef2c121576", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -153434,12 +154629,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"objectRef\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "718d6fe3-c446-43a3-8762-eb200e8bc05d", + "id": "582e59ae-ac7d-48d5-985c-962af06a7b9d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153514,12 +154709,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ba110db5-44d3-4058-9ee1-892c0e43750e", + "id": "98965230-facf-401b-90ab-aa67da005216", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153599,7 +154794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bf22766-1137-4606-9cfb-dcee6b5ed6aa", + "id": "42249906-29b3-4be5-8f5a-d4828a6b83d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153674,12 +154869,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb91af2f-e750-486e-9ab2-33846f401139", + "id": "775725b0-18bc-4e44-9e3e-4e956181c758", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153759,7 +154954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b711edeb-2247-4d52-9781-c1e116972cc9", + "id": "71d26b97-93da-4c25-80df-744da7f2cc91", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153834,7 +155029,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -153845,7 +155040,7 @@ } }, { - "id": "57597f2e-62f7-47f5-bafd-6abc851d52d4", + "id": "6ed5d5bc-0c25-4a66-a456-1572d55b353c", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -153876,7 +155071,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -153887,7 +155082,7 @@ }, "response": [ { - "id": "2dbc4707-d447-44a7-9a74-d6282c4ba341", + "id": "bc502f0b-3c70-4f98-914c-fee5eaf71dac", "name": "Created.", "originalRequest": { "url": { @@ -153917,7 +155112,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -153933,7 +155128,7 @@ "_postman_previewlanguage": "text" }, { - "id": "99a73548-71cd-4bae-b48c-680b55451777", + "id": "1d2af9cb-272b-4081-8ea2-5a7d23cdaf53", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153967,7 +155162,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -153984,12 +155179,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "08b38a1e-da97-47fe-bae7-c6ddb06b2885", + "id": "4c763b9e-f8e3-48bf-a8dd-f1b6cf6f639f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154023,7 +155218,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154045,7 +155240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4231d57-b9df-41cb-aa00-32ea61b698c3", + "id": "d10168ab-a0dc-4ba7-8b40-3b599d60d55a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154079,7 +155274,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154096,12 +155291,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93bb3eb3-6af5-40a4-a895-84d3958944fc", + "id": "2acdfc7a-baf6-45d9-8600-f272be9330b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154135,7 +155330,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154157,7 +155352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19eefbdf-d1a3-4c66-b4a0-fbf483a57ddc", + "id": "5221da8f-651c-49f2-8c4e-05ed0c9d855d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154191,7 +155386,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154208,7 +155403,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -154219,7 +155414,7 @@ } }, { - "id": "d8662343-cf9a-4fcd-b922-4d0e8f3e05cb", + "id": "3a286f6b-0a4e-493c-ab9b-6084656a1b77", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -154297,7 +155492,7 @@ }, "response": [ { - "id": "207f45dd-c936-41d1-9690-dc5e1f26c01f", + "id": "69fc1a43-9f03-4379-b1c6-22b057f46736", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -154373,12 +155568,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"objectRef\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "17346898-e25b-4ea7-ace9-105ab7d3e355", + "id": "efc3cda2-be97-4ed0-afa2-a14123b260f8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154454,12 +155649,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "afca5a52-025a-4a63-8263-82852cb49bb9", + "id": "a090f484-0007-4a1c-8781-b912f4df2b07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154540,7 +155735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72072650-2077-4ba2-886e-1263603a7f26", + "id": "9768f0e3-2a66-4f6b-ac1e-8a5a21117cff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154616,12 +155811,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad5ab8ce-2c31-48aa-b021-21480cee4d3e", + "id": "34abb444-17df-48d7-ae42-ca7e81f923fb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154702,7 +155897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89ef4c6a-683a-421a-b23c-53e43cd7ddd6", + "id": "abdcd0c0-363f-44cb-a412-807950d248fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154778,7 +155973,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -154789,7 +155984,7 @@ } }, { - "id": "13b9f6ab-d484-494c-adae-2d9a28051a1c", + "id": "e7c46a51-cd92-49c0-8639-215f046f774a", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -154841,7 +156036,7 @@ }, "response": [ { - "id": "3feb265e-25cf-4c1d-bcbc-287858418e93", + "id": "a799a855-c6cd-4cb2-a94c-9d266ba3ba7c", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -154881,12 +156076,12 @@ "value": "application/json" } ], - "body": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c3f154fd-7878-4abd-ac51-3109e2d40748", + "id": "35c22201-f846-4b56-a6dc-4b0768e8aebe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154926,12 +156121,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c013808-3617-49f2-9a60-2df41b7204c1", + "id": "3ff70a72-48c3-41bf-a64e-b264ca436925", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154976,7 +156171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f750af26-d6ae-417c-8315-0755909c5125", + "id": "9d5ea97d-1b19-4c79-ab87-69f3d0c5864d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155016,12 +156211,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c776093-bdaa-4ccc-beb1-8b62e1874a70", + "id": "4516ecc5-b83a-46c2-a7e2-e93f8db26c72", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155066,7 +156261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "390b3251-89e0-4174-be83-c0199a1ae243", + "id": "314085f0-e1d6-4f40-92d0-1a2506eb4f0a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155106,7 +156301,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -155117,7 +156312,7 @@ } }, { - "id": "218cd983-864e-4450-9337-2628fe85b3f9", + "id": "426dcc8d-98ab-499e-b6e3-9c83ff2a156a", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -155171,7 +156366,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -155182,7 +156377,7 @@ }, "response": [ { - "id": "159c79d6-846c-4dfe-b015-95ffa1c11f58", + "id": "9d843080-f74c-4056-9239-44949c50e0ed", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -155218,7 +156413,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -155235,12 +156430,12 @@ "value": "application/json" } ], - "body": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae900954-6d2b-4399-b886-ef7075e952b5", + "id": "7ca72beb-70cf-454f-9091-7f3a6d950959", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155276,7 +156471,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -155293,12 +156488,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7653b4aa-e656-48a3-adb9-06aab82da944", + "id": "00a6dc7a-6c4a-4c10-9086-2bbff144ced0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155334,7 +156529,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -155356,7 +156551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbbd8aae-bf97-49d6-bf20-5cd86f41e489", + "id": "13f8fc86-3363-4e3a-ba74-249d49cbe420", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155392,7 +156587,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -155409,12 +156604,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c49daa9-084b-4e5d-b39d-80250ac00ac6", + "id": "3d9fd30d-9721-49eb-b673-c1c435a5045b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155450,7 +156645,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -155472,7 +156667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2037b206-5475-4f2c-bf2b-f4cdb95f098f", + "id": "cfa3a6f6-e862-442a-bba5-f0cfcb8cbf3a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155508,7 +156703,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -155525,7 +156720,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -155536,7 +156731,7 @@ } }, { - "id": "a43f2b56-f486-454c-9e1d-ea560d5efadb", + "id": "d0d701ac-3a07-490f-8371-c996508104e3", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -155588,7 +156783,7 @@ }, "response": [ { - "id": "6e3edd52-c1c7-41ad-9b2d-5da3f85719bf", + "id": "28540e1d-9f08-4999-82d7-8ef9f8c911ec", "name": "No content.", "originalRequest": { "url": { @@ -155623,7 +156818,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c9feb419-1d62-44f3-ad2b-3bfb448b2a15", + "id": "0e511e96-8270-41b4-95df-01deea155740", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155663,12 +156858,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89915466-fe05-4aeb-bdcb-ff3af1c9a48c", + "id": "929615d8-be89-4da4-9f3e-ce0c374fe083", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155713,7 +156908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "439af0d6-b141-4896-b5ac-a6d8b1a79e02", + "id": "597615bc-82be-4457-9e52-e2f3bbc78015", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155753,12 +156948,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "abd7e4c6-6957-4c2f-afb9-84d59336b8cb", + "id": "806297d9-5c77-42ff-a48c-78a2bc09a2ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155803,7 +156998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8046a66e-5b82-4ad4-846c-b504ac06dfa5", + "id": "cad9491d-a3dc-4e49-ad60-46a11823cc84", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155843,7 +157038,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -155854,7 +157049,7 @@ } }, { - "id": "acaa7168-8a7f-464a-8a05-9b24d7c8bd39", + "id": "eebdc96e-4fed-4b20-8e8b-413570cbd585", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -155886,7 +157081,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155897,7 +157092,7 @@ }, "response": [ { - "id": "8012345d-f226-4728-b254-cd570e086799", + "id": "4fe53aab-fe1f-4636-a430-e0a6bf85617e", "name": "Request succeeded.", "originalRequest": { "url": { @@ -155932,7 +157127,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155949,12 +157144,12 @@ "value": "application/json" } ], - "body": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "body": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70500fca-0338-4b4d-b77e-832bb24711a7", + "id": "6bd95682-3249-4dc6-ac2e-72edbbb3dfe9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155989,7 +157184,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156006,12 +157201,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b73df88-0174-47f6-bd8c-6211466ac954", + "id": "07335336-92b8-46d8-bde8-c45f44624957", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156046,7 +157241,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156068,7 +157263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18b313e9-965b-4898-a9c8-a7a65a672292", + "id": "99a586dd-8cb5-48b5-87d2-b8ad25d83498", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156103,7 +157298,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156120,12 +157315,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bfe7abf8-c65c-4d38-b753-b94aab91d317", + "id": "12b6c3f3-384f-4121-a0a9-e7d9c0517a7a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156160,7 +157355,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156182,7 +157377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03b55b00-3486-403d-a5f8-e6c3ae59609d", + "id": "3fb92a67-ee57-41d0-82f2-ef4cfbc611bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156217,7 +157412,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156234,7 +157429,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -156245,7 +157440,7 @@ } }, { - "id": "42bb8de2-e865-4bac-98d0-708e3c9547c7", + "id": "da47ea02-c781-4ea9-92e5-7d16eefc511f", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -156277,7 +157472,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156288,7 +157483,7 @@ }, "response": [ { - "id": "714c6ed3-2174-40df-8218-ba1cb4e57843", + "id": "6abb1b80-0eed-4b0e-9de3-8a49313a3668", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -156319,7 +157514,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156335,7 +157530,7 @@ "_postman_previewlanguage": "text" }, { - "id": "33b768be-ff53-4923-ab04-c3aa9fc71501", + "id": "b412a8a3-ba9b-4025-8b70-7b305ef8d308", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156370,7 +157565,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156387,12 +157582,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b4084cc3-00ca-452b-8508-e67464e63178", + "id": "89c1597f-a3fb-476f-838a-d80fdd5b0303", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156427,7 +157622,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156449,7 +157644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "695a9ec6-f633-43cf-90f5-e2e6ba287811", + "id": "9bce78bb-cbb0-4c7d-940f-25540a5c1881", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156484,7 +157679,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156501,12 +157696,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7df17f10-54d7-4eb0-a9ef-ce8042f52681", + "id": "894bb924-f5d6-4d85-9bbe-0f1b08525c96", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156541,7 +157736,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156563,7 +157758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7aad68c1-b7f5-4092-9086-5f4b776be136", + "id": "8e1137a0-e7e4-461f-b48a-91084e5755e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156598,7 +157793,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -156615,7 +157810,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -156632,7 +157827,7 @@ "description": "Operations for creating, managing, and deleting transforms", "item": [ { - "id": "e65979cf-795c-43f6-ae0d-4d020c2808a2", + "id": "2ff02582-eb27-4a2c-99f9-b4c47ab9bf8f", "name": "List transforms", "request": { "name": "List transforms", @@ -156707,7 +157902,7 @@ }, "response": [ { - "id": "ddd9c88b-5071-451c-b1ff-298ecdc6d070", + "id": "72ed8544-a1ca-40e8-a1c7-869f551d1ebf", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -156796,7 +157991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3732211b-b074-488e-a512-f35aac6f6e32", + "id": "b5aec856-cdde-478d-84aa-bf92b3adb4d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156880,12 +158075,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a6b50e09-3379-485e-8d0c-f3fb8a8bf93e", + "id": "f878bf10-a1cd-402f-b0ae-9deeaa9458a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156974,7 +158169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ae118d0-a108-4d16-9e55-bc7dc00c5148", + "id": "9bdc35b2-73a4-48c6-b260-aee341c5c5ec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157058,12 +158253,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a76f7a8c-3ecc-44c9-95ac-23e6f0f684a7", + "id": "2ce8af26-92dd-485e-a656-91ceb606ae2c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157152,7 +158347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5f26201-5762-4042-9e1a-f465c405eaee", + "id": "26c5b780-25cb-4985-9176-6d34d8be4a1e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157236,7 +158431,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -157247,7 +158442,7 @@ } }, { - "id": "5eaf6038-581d-4473-99d5-ff03c3b0612f", + "id": "baa73498-cce3-41f1-9976-d97dff6862f7", "name": "Create transform", "request": { "name": "Create transform", @@ -157289,7 +158484,7 @@ }, "response": [ { - "id": "3443a8ff-c614-4476-9d05-b86d973714fd", + "id": "16d35f00-11e9-435c-9249-69f52f02f04e", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -157345,7 +158540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "499ce962-3021-43f8-af68-c4432cb192de", + "id": "b2044ba6-2f09-44fa-8f2f-80e0718bb638", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157396,12 +158591,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68eb7de2-40ef-435c-a7a2-3be8d7393adb", + "id": "675828b4-3af2-48d9-9afb-4db98607d493", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157457,7 +158652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fc21ca2-57ef-4fb2-9dea-eecd7c75aba0", + "id": "7e7ee0d0-1414-44fc-b7cb-f16d12f7089e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157508,12 +158703,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f08b6d2-de5b-483a-af3a-7cbf4a55b7d8", + "id": "bbf2984e-0af5-42d5-a602-08787e205631", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157569,7 +158764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56ccdb9b-677b-4830-84fc-38448f4fb7aa", + "id": "143e6bf4-cf7b-4000-887e-391a56c789f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157620,7 +158815,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -157631,7 +158826,7 @@ } }, { - "id": "00d2e0b0-4583-4047-b9ac-902536f7a4d9", + "id": "18e2cb95-a6d7-4e61-9e55-9900558c49e3", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -157672,7 +158867,7 @@ }, "response": [ { - "id": "77635f7d-ddb1-4981-9304-f89b933062ee", + "id": "fc6e3a0b-b3b9-41cd-8955-b4a4a2c53f9c", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -157716,7 +158911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06ad53ca-f999-4b3e-9d07-6a1bf792badd", + "id": "6fb039bc-5299-4c31-a7d3-ce63ba200f9f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157755,12 +158950,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bda34505-f5d8-4682-8f35-b07c1b9f2c58", + "id": "ec1dc1c5-dcff-4eb0-9484-0d620bdb8d04", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157804,7 +158999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3a869a1-0fcf-4ec6-a6f8-c4ee5696f2ba", + "id": "bd2d8c5e-8178-4ad0-a849-22d5ad50d721", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157843,12 +159038,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b95bb686-366e-450c-a2f1-085a0b663f5e", + "id": "ad301d07-5daf-45c8-9fad-989a0c92e983", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157887,12 +159082,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "074babff-8b42-47b3-a509-7460a60817ce", + "id": "aa2ba0d3-f588-4745-adca-09cb8a004e55", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157936,7 +159131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "576914f1-e0a4-4313-b165-fbdf68483265", + "id": "e6ca76fa-1238-49a5-932a-92f47d6ba132", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157975,7 +159170,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -157986,7 +159181,7 @@ } }, { - "id": "9f2ddda1-9e75-4ed8-bde8-33ce7dc1df47", + "id": "a2d5ba6d-95e5-4491-a978-2255531e3a5a", "name": "Update a transform", "request": { "name": "Update a transform", @@ -158040,7 +159235,7 @@ }, "response": [ { - "id": "dfe24a5f-e311-44d6-9162-fa6e3123b464", + "id": "22690fef-d802-4d34-a3d9-d1fc436f2eb2", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -158097,7 +159292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6b0c898-8dd3-4684-a4df-de54764d2142", + "id": "cd127645-1501-4bb7-91cf-49a12c13dbf5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158149,12 +159344,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d695f1f-5eeb-41a8-814f-42730a20838a", + "id": "32a87123-4d17-43fb-b038-8840c54c0a0e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158211,7 +159406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b96d840b-68d8-49bc-9903-b672d1119e23", + "id": "28d506f6-998b-4291-bd49-2c4c7e494c96", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158263,12 +159458,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad02ae5b-9e55-4a03-93a1-d9bc5da180e8", + "id": "4fe30ee2-9a2c-47d1-ae81-92b6717e731c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158320,12 +159515,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "82e10904-f1f2-4ab2-a284-14aa08a54591", + "id": "1212b69e-018e-4193-9b4d-1f34ccd053ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158382,7 +159577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3243398-096d-442b-97df-926a59013f94", + "id": "f2249007-6c55-4056-9bf5-4bf2829a7ca5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158434,7 +159629,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -158445,7 +159640,7 @@ } }, { - "id": "415b6ff4-2c27-43a0-b48e-4b3e3ce382e4", + "id": "c7ee7cd8-2f93-46a6-aed4-eb01b41fd554", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -158486,7 +159681,7 @@ }, "response": [ { - "id": "3d8fc4e0-f965-4d71-9b05-519d2f4725cb", + "id": "2ee99532-cc08-459f-97ed-dfb560f7ff8c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -158520,7 +159715,7 @@ "_postman_previewlanguage": "text" }, { - "id": "115b81bf-9af6-4845-bcfb-b61255ee4406", + "id": "c3cdbeee-958c-4f94-9294-7a1a3d5d5dbf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158559,12 +159754,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2691c91d-88c3-4ba7-bdde-d549fb6e1c11", + "id": "0b081dc4-44df-4682-ac47-8d36c0594f02", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158608,7 +159803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f41f0b9c-c581-4ea4-9f68-2e79a3fff9da", + "id": "83fad1ae-c645-4ae5-951b-7b5ad76003e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158647,12 +159842,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5a5c530-5878-41a6-9afa-520d32687af3", + "id": "ad9b4d12-cdb9-4987-a3d4-66783e9f592a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158691,12 +159886,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4a891dc-e3b6-4afd-a930-5699aed00190", + "id": "ae2fe4bf-c15a-4379-9afe-774ac236ca6c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158740,7 +159935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d056145d-4317-4ee1-83a5-b1ca42b9240a", + "id": "f97311b4-1f20-4688-b526-a48852eadd49", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158779,7 +159974,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -158796,7 +159991,7 @@ "description": "Event Triggers provide real-time updates to changes in IdentityNow so you can take action as soon as an event occurs, rather than poll an API endpoint for updates. IdentityNow 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/idn/docs/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 Postapproval](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/access-request-postapproval) | idn:access-request-post-approval | FIRE_AND_FORGET | After an access request is approved. |\n| [Access Request Preapproval](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/access-request-preapproval) | 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/idn/docs/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/idn/docs/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/idn/docs/event-triggers/triggers/identity-created) | idn:identity-created | FIRE_AND_FORGET | After an identity is created. |\n| [Provisioning Action Completed](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/provisioning-action-completed) | idn:post-provisioning | FIRE_AND_FORGET | After a provisioning action completed on a source. |\n| [Saved Search Complete](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/saved-search-completed) | idn:saved-search-complete | FIRE_AND_FORGET | After a scheduled search completed. |\n| [Source Created](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/source-created) | idn:source-created | FIRE_AND_FORGET | After a source is created. |\n| [Source Deleted](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/source-deleted) | idn:source-deleted | FIRE_AND_FORGET | After a source is deleted. |\n| [Source Updated](https://developer.sailpoint.com/idn/docs/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/idn/docs/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/idn/docs/event-triggers/triggers/identity-deleted) | idn:identity-deleted | FIRE_AND_FORGET | After an identity is deleted. |\n| [Source Account Created](https://developer.sailpoint.com/idn/docs/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/idn/docs/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/idn/docs/event-triggers/triggers/source-account-updated) | idn:source-account-updated | FIRE_AND_FORGET | After a source account is changed. |\n\nRefer to [Event Triggers](https://developer.sailpoint.com/idn/docs/event-triggers/) for more information about event triggers.\n", "item": [ { - "id": "787163c4-078d-488c-8103-90f747a0bb4a", + "id": "f8691032-95cc-48de-ad93-9ada0a49d71b", "name": "List Triggers", "request": { "name": "List Triggers", @@ -158871,7 +160066,7 @@ }, "response": [ { - "id": "1adeef5b-f1c4-4921-b28e-e3821fb45e44", + "id": "0c0c9252-7026-4bf1-b372-bb84c3c341dc", "name": "List of triggers.", "originalRequest": { "url": { @@ -158955,12 +160150,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"REQUEST_RESPONSE\",\n \"inputSchema\": \"\",\n \"exampleInput\": {\n \"accessRequestId\": \"\",\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"operation\": \"Remove\",\n \"description\": \"\",\n \"comment\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"operation\": \"Remove\",\n \"description\": \"\",\n \"comment\": \"\"\n }\n ],\n \"requestedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"description\": \"\",\n \"outputSchema\": \"\",\n \"exampleOutput\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"FIRE_AND_FORGET\",\n \"inputSchema\": \"\",\n \"exampleInput\": {\n \"accessRequestId\": \"\",\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"operation\": \"Remove\",\n \"description\": \"\",\n \"comment\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ROLE\",\n \"operation\": \"Add\",\n \"description\": \"\",\n \"comment\": \"\"\n }\n ],\n \"requestedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"description\": \"\",\n \"outputSchema\": \"\",\n \"exampleOutput\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"GOVERNANCE_GROUP\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"FIRE_AND_FORGET\",\n \"inputSchema\": \"\",\n \"exampleInput\": {\n \"accessRequestId\": \"\",\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"operation\": \"Remove\",\n \"description\": \"\",\n \"comment\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"operation\": \"Add\",\n \"description\": \"\",\n \"comment\": \"\"\n }\n ],\n \"requestedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"description\": \"\",\n \"outputSchema\": \"\",\n \"exampleOutput\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"GOVERNANCE_GROUP\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"REQUEST_RESPONSE\",\n \"inputSchema\": \"\",\n \"exampleInput\": {\n \"accessRequestId\": \"\",\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"operation\": \"Add\",\n \"description\": \"\",\n \"comment\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"operation\": \"Remove\",\n \"description\": \"\",\n \"comment\": \"\"\n }\n ],\n \"requestedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n },\n \"description\": \"\",\n \"outputSchema\": \"\",\n \"exampleOutput\": {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"IDENTITY\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "824346b8-8ad0-4590-8398-5144da23b81c", + "id": "bef520ba-df9a-42d8-b78f-ddcf3dd033fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159044,12 +160239,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f21a313f-4679-4642-b73d-fb85e50d4f75", + "id": "b0053ca7-6320-46f3-80e9-8e98c998e97e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159138,7 +160333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "695504f2-820b-466c-bdfc-15a7d0eaee30", + "id": "040b3b7c-280a-46e9-87d8-2ae37374b236", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159222,12 +160417,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3868e7a7-feb6-46be-b91e-922b03886ae8", + "id": "e3db96b7-85f3-4ecc-8baf-d0f14b86b41b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159316,7 +160511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e41f43f-ec6a-415b-83e2-9432cb8fcdb8", + "id": "929be890-dd96-499e-9ad2-367525b78e5c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159400,7 +160595,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -159411,7 +160606,7 @@ } }, { - "id": "5e0834cc-9453-4c25-97ce-4fa1b94df4d8", + "id": "566efebc-f030-45b8-b3e5-57aec4be4bdc", "name": "Create a Subscription", "request": { "name": "Create a Subscription", @@ -159442,7 +160637,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"INLINE\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"HTTP\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -159453,7 +160648,7 @@ }, "response": [ { - "id": "bf21eb53-4a33-4ff5-bc82-0f081b002ac6", + "id": "b76dead1-6fcf-427f-a1b6-a93fb490800a", "name": "New subscription to a trigger. The trigger can now be invoked by the method defined in the subscription.", "originalRequest": { "url": { @@ -159487,7 +160682,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"INLINE\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"HTTP\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -159504,12 +160699,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"DYNAMIC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9202888c-a54a-46eb-a955-0b5f8a64feac", + "id": "6f40e97d-a753-4559-b656-fd2837e36092", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159543,7 +160738,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"INLINE\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"HTTP\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -159560,12 +160755,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fff5846a-9ce8-4b95-9260-080d0e1d70ea", + "id": "ac7da49b-3f42-49f5-9cc1-1c68c70fca4f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159599,7 +160794,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"INLINE\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"HTTP\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -159621,7 +160816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac7ba567-270f-4f62-b69b-4d7bf494446f", + "id": "8c7ad9f6-84db-44bf-9fc4-930bb1cfa4c8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159655,7 +160850,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"INLINE\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"HTTP\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -159672,12 +160867,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86f8db60-639d-4ac9-a2a7-6a109354a4c3", + "id": "324c6737-61db-4544-a5f2-22cab334c426", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159711,7 +160906,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"INLINE\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"HTTP\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -159733,7 +160928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "168778e6-890a-4c57-a9b0-66807440e35e", + "id": "b673c238-72cd-49d5-8fc6-e1ec316485de", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159767,7 +160962,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"triggerId\": \"\",\n \"type\": \"INLINE\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"HTTP\",\n \"name\": \"\",\n \"description\": \"\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -159784,7 +160979,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -159795,7 +160990,7 @@ } }, { - "id": "66301cd4-f57f-432d-ab3a-57402fbb2dde", + "id": "41e4ca93-eaab-4e35-8637-959df4b07444", "name": "List Subscriptions", "request": { "name": "List Subscriptions", @@ -159870,7 +161065,7 @@ }, "response": [ { - "id": "fbd26042-9428-417c-adee-cc1bc85c5678", + "id": "8003ca74-e41b-4e83-8742-abb2a12a2ed9", "name": "List of subscriptions.", "originalRequest": { "url": { @@ -159954,12 +161149,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"SCRIPT\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n },\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"HTTP\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"DYNAMIC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"HTTP\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n },\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"INLINE\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"DYNAMIC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c24e7019-3923-4817-8031-07680bda59b1", + "id": "fb575ef9-3a95-4b4b-b2f6-c5c84e75cc22", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160043,12 +161238,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3fdad92a-23ac-4489-99fc-2793b4845283", + "id": "9448fe17-19b8-4651-9913-5baff8779ed1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160137,7 +161332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2da6cb02-56cd-4cd3-876d-0ed096c88b4c", + "id": "d4c7e4fb-15bd-4d8b-a511-b0f0bbd2a9df", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160221,12 +161416,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c721d26-ce59-4dd5-ad3f-1f04cc5646cc", + "id": "de611624-4b26-4910-9eca-39780bf266bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160315,7 +161510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26f9646e-87e6-4c93-bc79-ebbdd3d3822a", + "id": "e2778db1-212f-4a6b-b536-28efd15cb225", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160399,7 +161594,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -160410,7 +161605,7 @@ } }, { - "id": "9efb7b41-60ac-4085-b076-8ff5b3f4e65c", + "id": "1917bba3-14af-4c81-a420-443eabdea4ae", "name": "Update a Subscription", "request": { "name": "Update a Subscription", @@ -160453,7 +161648,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -160464,7 +161659,7 @@ }, "response": [ { - "id": "240f2294-c53b-48bb-9d41-0baa21341949", + "id": "7fbea1ae-2e46-4adb-b286-01ada84303fb", "name": "Updated subscription.", "originalRequest": { "url": { @@ -160499,7 +161694,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -160516,12 +161711,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"DYNAMIC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "40b5bc69-7fb5-49b3-969c-8ec84778e08e", + "id": "fac93479-6185-4c5c-bf54-41a68d40f9e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160556,7 +161751,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -160573,12 +161768,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9bcf1147-8f42-4e71-a93b-62d953eecc31", + "id": "b7e399d3-b994-400d-9dad-4b8039a7d401", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160613,7 +161808,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -160635,7 +161830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f689a59d-f091-4d81-a403-3a289fe19362", + "id": "c9027088-2409-48d4-9281-cf5672e6ab19", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160670,7 +161865,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -160687,12 +161882,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6d1cd7a-bf36-4197-aab3-ee1863ab421c", + "id": "6dee9d1e-9bd1-4466-80e1-bd176e3ad6bf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160727,7 +161922,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -160744,12 +161939,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aa2fa7ba-a248-43c9-a17c-6f1b57ec1c17", + "id": "a5d4e8f7-10c5-4ad6-8917-8167c5fa7cf2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160784,7 +161979,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -160806,7 +162001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39b108c8-0a32-42ec-8e8b-385612a9da16", + "id": "ad508676-999d-417b-ba4c-11100855c7c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160841,7 +162036,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"responseDeadline\": \"PT1H\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"SYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"enabled\": true,\n \"filter\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -160858,7 +162053,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -160869,7 +162064,7 @@ } }, { - "id": "2480231e-8245-4e64-a255-d9a2084e374f", + "id": "639a10d1-f4f7-4099-ac93-61ce2f40dffb", "name": "Patch a Subscription", "request": { "name": "Patch a Subscription", @@ -160912,7 +162107,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160923,7 +162118,7 @@ }, "response": [ { - "id": "3725fd9e-5f12-46ad-8fdf-057358e33775", + "id": "f57590c7-87e8-4e1f-8778-d5140bdec5a3", "name": "Updated subscription.", "originalRequest": { "url": { @@ -160958,7 +162153,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160975,12 +162170,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"ASYNC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"EVENTBRIDGE\",\n \"name\": \"\",\n \"triggerName\": \"\",\n \"enabled\": true,\n \"responseDeadline\": \"PT1H\",\n \"description\": \"\",\n \"httpConfig\": {\n \"url\": \"\",\n \"httpDispatchMode\": \"DYNAMIC\",\n \"httpAuthenticationType\": \"NO_AUTH\",\n \"basicAuthConfig\": {\n \"userName\": \"\",\n \"password\": \"\"\n },\n \"bearerTokenAuthConfig\": {\n \"bearerToken\": \"\"\n }\n },\n \"eventBridgeConfig\": {\n \"awsAccount\": \"\",\n \"awsRegion\": \"\"\n },\n \"filter\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b52e1e46-7131-4abd-9c2d-4119468218b0", + "id": "92c0a171-9509-4803-8004-21fb5150ca3a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161015,7 +162210,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -161032,12 +162227,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05afedcd-1a1d-477f-a93e-f57e0141699f", + "id": "e520e3e4-400e-4da7-badd-7347b2fe806b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161072,7 +162267,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -161094,7 +162289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23bfb438-8bd6-45ef-8613-78d8d72f9c2a", + "id": "77c80a9a-122b-4093-8fe9-cd9916db21ea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161129,7 +162324,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -161146,12 +162341,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e16d660a-bd74-417c-a889-131cbc4a83fb", + "id": "08afaa64-f760-4dfd-b927-ee14a13050f0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161186,7 +162381,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -161203,12 +162398,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd57ee16-2142-4f10-aef5-1e4b2b44f074", + "id": "a2403c34-d3a3-4936-8aa7-f4a7ec676477", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161243,7 +162438,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -161265,7 +162460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19c80f97-5513-4cb0-91af-b3acf3c6e4dd", + "id": "0ee4ba91-e9b3-4bdf-8ff2-8b6efbe46354", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161300,7 +162495,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -161317,7 +162512,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -161328,7 +162523,7 @@ } }, { - "id": "de25f95b-a37c-4600-b678-0a80bad1dcea", + "id": "25f55ce6-fdb9-487d-b7f0-4ef079ca6bc7", "name": "Delete a Subscription", "request": { "name": "Delete a Subscription", @@ -161369,7 +162564,7 @@ }, "response": [ { - "id": "64d4e46f-af2f-49be-81b0-220e77c0f1c1", + "id": "01121741-7ab4-4875-b6a1-8def6a9b3bbe", "name": "Subscription is deleted successfully.", "originalRequest": { "url": { @@ -161403,7 +162598,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7b87d97b-bc47-4153-9a07-d7d970275fbf", + "id": "1d32e91f-b182-4736-9df4-55f04cd932d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161442,12 +162637,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "714c292f-c28c-4bcf-96bf-cce62c6b8ae1", + "id": "d4d6096f-0002-4dff-83f3-3066ee0a9b5d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161491,7 +162686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2fc94d9-939d-4f51-aae1-01a83eb1d3f6", + "id": "15b8c29a-b0b1-4a8a-a058-ffb3e2435bab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161530,12 +162725,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9bf3b4d5-902c-41e5-8f2f-bf551afed795", + "id": "3c9bf69e-67dc-4f98-a851-c53325b2857a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161574,12 +162769,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43684102-9c64-4b3e-8565-197dfd122b63", + "id": "67036a5d-508f-4ee7-8ae1-26202f91f971", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161623,7 +162818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ab37410-feab-4b67-8766-eabd9cb4a959", + "id": "30ddccb3-0658-4239-a3c9-afd6945ba56d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161662,7 +162857,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -161673,7 +162868,7 @@ } }, { - "id": "c860ee34-ed4f-402d-90ae-1b08d4c3b5ab", + "id": "03666093-e6b5-44cc-b122-1c2422da7349", "name": "Validate a Subscription Filter", "request": { "name": "Validate a Subscription Filter", @@ -161716,7 +162911,7 @@ }, "response": [ { - "id": "19a19d18-20e4-47c1-b696-c52a5bd1b7af", + "id": "19bae068-6b77-4cec-9e15-a234edd5f400", "name": "Boolean whether specified filter expression is valid against the input.", "originalRequest": { "url": { @@ -161773,7 +162968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1243f680-092c-47a0-b6b5-bf9e8a1ca81f", + "id": "728d765c-4433-4dcd-9a9a-6775a958c9f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161825,12 +163020,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fed186ae-45f9-47f8-aa71-7489723e2a42", + "id": "6644f754-8091-419b-ba91-ea376af0fba9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161887,7 +163082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "845848c1-691f-4008-9e10-3dc4112e8724", + "id": "c007ae6a-f839-43a5-9d96-7bc921ab8e7e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161939,12 +163134,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d07db879-3243-4665-a800-097e75ddeefd", + "id": "958bd0a8-0c81-4cdb-b7c1-8c96c2a0433e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162001,7 +163196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38594638-7cdf-4b29-8498-e12e1bebf81c", + "id": "d5d854fe-f7ef-4014-a4b7-791ae7faf439", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162053,7 +163248,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -162064,7 +163259,7 @@ } }, { - "id": "f23a4981-19b0-44eb-9746-0ef03a0f0aca", + "id": "52f5830a-1cd1-4102-adc4-ffe9dcdbf89c", "name": "List Latest Invocation Statuses", "request": { "name": "List Latest Invocation Statuses", @@ -162140,7 +163335,7 @@ }, "response": [ { - "id": "2c0e9405-ffc6-4e13-9792-4ebe5f7ccf47", + "id": "50724471-ff18-4cdd-9977-607118fd9e5d", "name": "List of latest invocation statuses.", "originalRequest": { "url": { @@ -162225,12 +163420,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"subscriptionId\": \"\",\n \"startInvocationInput\": {\n \"triggerId\": \"\",\n \"input\": {},\n \"contentJson\": {}\n },\n \"type\": \"TEST\",\n \"created\": \"\",\n \"completed\": \"\",\n \"completeInvocationInput\": {\n \"localizedError\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"output\": {}\n }\n },\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"subscriptionId\": \"\",\n \"startInvocationInput\": {\n \"triggerId\": \"\",\n \"input\": {},\n \"contentJson\": {}\n },\n \"type\": \"REAL_TIME\",\n \"created\": \"\",\n \"completed\": \"\",\n \"completeInvocationInput\": {\n \"localizedError\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"output\": {}\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"subscriptionId\": \"\",\n \"startInvocationInput\": {\n \"triggerId\": \"\",\n \"input\": {},\n \"contentJson\": {}\n },\n \"type\": \"REAL_TIME\",\n \"created\": \"\",\n \"completed\": \"\",\n \"completeInvocationInput\": {\n \"localizedError\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"output\": {}\n }\n },\n {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"subscriptionId\": \"\",\n \"startInvocationInput\": {\n \"triggerId\": \"\",\n \"input\": {},\n \"contentJson\": {}\n },\n \"type\": \"TEST\",\n \"created\": \"\",\n \"completed\": \"\",\n \"completeInvocationInput\": {\n \"localizedError\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"output\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "279fa9dc-ae3a-49fa-861e-493296f660aa", + "id": "16d5bae1-af84-4304-b1c3-ef1982e19aa0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162315,12 +163510,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c56ff5cb-61aa-42d3-8cb4-672a5249433d", + "id": "b1e74344-5625-460c-a463-7b9013617437", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162410,7 +163605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed1eef3e-80a6-4f28-b67e-5ab1ad213883", + "id": "8606f9e0-5dcd-4c45-bfbd-bc675cd90427", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162495,12 +163690,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "329c4ed4-495b-421e-8b2c-8c3c2f33d7c4", + "id": "c00d8ff7-904e-409d-a400-861c6a969c64", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162590,7 +163785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f30e24a3-72c2-415b-8637-604ad14d679e", + "id": "5b4cec48-3e21-4296-bfd5-064fc6003b48", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162675,7 +163870,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -162686,7 +163881,7 @@ } }, { - "id": "c8cdb994-508c-40e8-96f8-d3777fc8e54d", + "id": "d88610eb-d9b5-4634-ab77-5e08bad1d0d6", "name": "Complete Trigger Invocation", "request": { "name": "Complete Trigger Invocation", @@ -162741,7 +163936,7 @@ }, "response": [ { - "id": "883de190-c255-40b2-841a-c5bf074af786", + "id": "2f5c23a9-0a5a-467f-b28b-3493163b447d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -162789,7 +163984,7 @@ "_postman_previewlanguage": "text" }, { - "id": "88515e1d-c73d-4583-8e18-d27063e12346", + "id": "8d6db62a-e00d-48bb-a740-7f7402b12216", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162842,12 +164037,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e6094135-2154-4b79-82ae-ea3bf537c487", + "id": "c01d97b6-9234-47ce-9273-c647d057310c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162905,7 +164100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d8081da-bc69-4f67-866a-590e76d07066", + "id": "3c22bc5c-bfda-43db-b8f6-b3529513f51c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162958,12 +164153,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe5286e4-f461-4cde-be50-c7c4c7069a79", + "id": "2ca25bef-8bdf-4b7b-a5e6-d76d4ede95fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163021,7 +164216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c0440d0-c622-45a0-a7ad-ef42398ef7d2", + "id": "3a1c35ca-2193-4f45-b023-56ed618f5d78", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163074,7 +164269,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -163085,7 +164280,7 @@ } }, { - "id": "0b627ee6-e9fa-4702-b191-80b3514efb0e", + "id": "f13f1ded-aa10-47f2-bbe6-bf82d3bfe3cc", "name": "Start a Test Invocation", "request": { "name": "Start a Test Invocation", @@ -163128,7 +164323,7 @@ }, "response": [ { - "id": "1db5ddbc-6712-4d26-bc1d-c41fbe3ede81", + "id": "dd617d99-0c4d-45ae-833d-31a6c824b1ec", "name": "Test trigger invocations that have been started for specified subscription(s).", "originalRequest": { "url": { @@ -163185,7 +164380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f79c321-e1f2-4fc3-9bd5-01d689807bf2", + "id": "da2f7ec4-6392-4ba2-9373-c85045273ac1", "name": "Trigger invocation is skipped, because tenant has not subscribed to the specified trigger.", "originalRequest": { "url": { @@ -163232,7 +164427,7 @@ "_postman_previewlanguage": "text" }, { - "id": "dc633f63-7f50-4707-946a-69c2afed037b", + "id": "70a53f8a-a949-458e-a841-2685e3e18d29", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163284,12 +164479,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "66975490-6cbd-4375-ae2e-65618d543405", + "id": "6059d164-68d7-4bda-95f6-1ae5a3fc0621", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163346,7 +164541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7f89ca0-7bda-4b8b-a59a-a6d0b97276ee", + "id": "0390c67f-2aa9-4197-90f7-4bd80cc02dbf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163398,12 +164593,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d502eb2c-5a79-41d8-96d5-63fadba8e9bc", + "id": "b485b585-607b-4dad-8921-d33b6c034da0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163460,7 +164655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8af1dea1-6334-4b16-ad5a-7be0bce05d92", + "id": "c26ed10d-0586-48e4-b654-2d1e66f07bea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163512,7 +164707,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -163529,7 +164724,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 IdentityNow'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": "b58a382f-bbda-4538-ad7f-090f8e7d74e8", + "id": "ed40e513-7d14-4110-a412-92f2510755ec", "name": "List Work Items", "request": { "name": "List Work Items", @@ -163595,7 +164790,7 @@ }, "response": [ { - "id": "d2070adf-4308-400f-b2d2-48a948957dc7", + "id": "9d2e3d14-c7ba-4ffe-9932-4a8e0f7129f0", "name": "List of work items", "originalRequest": { "url": { @@ -163670,12 +164865,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"PENDING\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"EXPIRED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"PENDING\",\n \"type\": \"VIOLATIONREVIEW\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"CANCELED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"EXPIRED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"PENDING\",\n \"type\": \"APPROVAL\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"EXPIRED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b5212c9-79fe-4c8c-a98d-62ca31232002", + "id": "aed5389d-3813-4be7-a1fa-bb0bbf087ea0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163750,12 +164945,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80372c7a-2522-47b5-af44-c63d17e0e453", + "id": "272fba59-81ec-48b6-bb4f-3764632795bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163830,12 +165025,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa2fb48a-093d-474b-a019-df7c046d6b00", + "id": "66017ccd-85e6-4baf-a41a-a7e40ea5d999", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163910,7 +165105,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -163921,7 +165116,7 @@ } }, { - "id": "e82416f9-92e5-4384-83b8-664861a6a6fb", + "id": "5709c04d-7aad-4eaf-965f-ecbba1d0268b", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -163988,7 +165183,7 @@ }, "response": [ { - "id": "5df05e1b-ab34-48ce-a542-64a6540e6b69", + "id": "cc89609a-2c6f-4875-93ed-72643a1b2d1a", "name": "List of completed work items.", "originalRequest": { "url": { @@ -164064,12 +165259,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"PENDING\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"EXPIRED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"PENDING\",\n \"type\": \"VIOLATIONREVIEW\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"CANCELED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"EXPIRED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"PENDING\",\n \"type\": \"APPROVAL\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"EXPIRED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d2d3c0c-faf7-47e7-953d-5dbe0294d0be", + "id": "7017af44-e2ba-48b1-ad2e-105020a24257", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164145,12 +165340,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "45232ef2-981e-4eef-a30a-c605c4197dba", + "id": "c00b00fa-9d59-4cbc-a15c-778468784f65", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164226,12 +165421,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "302ff379-da41-4467-8f57-f83226b93acd", + "id": "0a7b437a-3ee5-432a-b9c8-ea35f1c95e6f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164307,7 +165502,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -164318,7 +165513,7 @@ } }, { - "id": "12161b9b-7459-4ff2-b0f6-62f42103bc8a", + "id": "e911e9e7-9ebe-4619-8ee4-f66f74041574", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -164358,7 +165553,7 @@ }, "response": [ { - "id": "47a683b0-485f-490f-b52f-8ece96fab7a7", + "id": "90e9f085-2ad8-42d0-a208-44dee1d86bd4", "name": "List of work items", "originalRequest": { "url": { @@ -164412,7 +165607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "930fb971-7ea6-422a-bc8f-5a0d508a3e65", + "id": "15d6fbb6-e411-4384-8d8a-47aca7f07b32", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164461,12 +165656,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6a5eee5f-7437-4a35-83f5-ee6992b5997d", + "id": "cd0d4420-2628-4b95-9081-d8f2e4c931f5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164515,12 +165710,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2f145704-a140-46d4-8498-f242af1285f3", + "id": "b1157515-a2fe-494c-8746-93e956d313e0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164569,7 +165764,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -164580,7 +165775,7 @@ } }, { - "id": "3542f256-43ad-45fe-a265-b19af4cbfbf8", + "id": "d249ef65-42a1-4bef-9446-159948a3f3e9", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -164621,7 +165816,7 @@ }, "response": [ { - "id": "909a98b7-d781-480a-8083-20854bfefe77", + "id": "7b74e749-2852-469e-a417-bae8aa6379c4", "name": "List of work items", "originalRequest": { "url": { @@ -164676,7 +165871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51b4d647-42c6-4877-bdfa-a878b34a23f6", + "id": "28304351-5c11-4009-8160-3f14019ec75f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164726,12 +165921,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "010906f4-396a-4680-a8f2-2c4cd67a368d", + "id": "924b80b8-8b8e-4aad-8093-700befd62622", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164781,12 +165976,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db1c06d8-b092-4dd3-a706-631425b09064", + "id": "e66ef456-156f-45b1-b58d-d277e1ecc969", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164836,7 +166031,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -164847,7 +166042,7 @@ } }, { - "id": "b5ab4eb5-f9f3-4430-8c19-614645d6c369", + "id": "84a41f28-e67a-4dd9-98d2-179132201a93", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -164887,7 +166082,7 @@ }, "response": [ { - "id": "42e25d5f-da37-40ee-851b-b89ebf4bf77b", + "id": "a20df961-cc57-4a1d-bef0-fd95433f0ade", "name": "List of work items", "originalRequest": { "url": { @@ -164941,7 +166136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e65c4199-09d8-415d-8aa3-1497c2fc449b", + "id": "22696f94-007c-4969-97a1-531073adf77c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164990,12 +166185,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "897c4fa2-32b4-4ac8-8fd4-734e871e258b", + "id": "415077c5-24ac-4a60-930f-a98b47d65bec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165044,12 +166239,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eaad79ee-ee15-4d29-b398-03c56d354d1f", + "id": "071f8f32-b75f-46fe-b727-6b20ba4acce7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165098,7 +166293,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -165109,7 +166304,7 @@ } }, { - "id": "a2415c5e-32d7-4027-99fa-83c019ae548e", + "id": "10c810ed-7c9f-47ae-b526-21c3ed71a6b3", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -165160,7 +166355,7 @@ }, "response": [ { - "id": "25bf3199-9fac-425f-8f12-abe9f31b95a8", + "id": "cacb1045-dc75-45e2-939f-dc4ee90ea756", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -165209,12 +166404,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"PENDING\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"EXPIRED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"PENDING\",\n \"type\": \"VIOLATIONREVIEW\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"CANCELED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"EXPIRED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"PENDING\",\n \"type\": \"APPROVAL\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"EXPIRED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e200da48-7325-4f69-bfdf-7472b872c795", + "id": "7f758aea-bb96-40cb-9b2d-71848044b9ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165263,12 +166458,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "754f54f6-74d4-47aa-bed9-fad41da2e0f0", + "id": "35cddbdc-ed1c-446c-b269-fe447d16ab4f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165317,12 +166512,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eada5626-35a0-4f04-9d7e-95ba2bcff87a", + "id": "360b59ab-fa0f-4047-af3f-d8b80a37ff8b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165371,7 +166566,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -165382,7 +166577,7 @@ } }, { - "id": "7df6da06-d4e7-4451-8d71-a3070e8f1d21", + "id": "2cd61427-c40c-4dc5-973b-6838f53dbc97", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -165423,7 +166618,7 @@ }, "response": [ { - "id": "7ecac108-712e-4f45-881e-906fa9cf705f", + "id": "311213e8-16db-4623-bf0c-9b5e581ae789", "name": "A WorkItems object", "originalRequest": { "url": { @@ -165462,12 +166657,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"FORM\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bd46643b-99b3-4354-9640-81490c94f84d", + "id": "abb803d8-d703-4367-afa6-c333d9cf33df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165506,12 +166701,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cf22a5ca-3cd4-4757-a800-32debea496a8", + "id": "2b764553-8cae-4690-8ada-1f9044721041", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165550,12 +166745,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "699629ba-45cb-41a0-8e6c-944784735cc4", + "id": "89fef2d5-8947-46ca-b524-46c877d08246", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165594,7 +166789,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -165605,7 +166800,7 @@ } }, { - "id": "b4d46b27-83dc-4218-8cef-0841c6728295", + "id": "fd811193-0d35-4e9a-ba38-2821bd8c2094", "name": "Forward a Work Item", "request": { "name": "Forward a Work Item", @@ -165660,7 +166855,7 @@ }, "response": [ { - "id": "189e4d68-48ca-4460-889e-3c58fe0e5e72", + "id": "8fa32567-3119-4ed9-88db-131e3578e481", "name": "Success, but no data is returned.", "originalRequest": { "url": { @@ -165708,7 +166903,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8ad1f2e9-5f68-4c9e-861d-0b2a34009ce0", + "id": "9440a55c-06ee-4748-b287-607f3ebffb9d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165761,12 +166956,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a91717e1-015b-4670-84b2-f2aa0c107613", + "id": "afb77c60-c3d3-4689-8183-146f2b74f542", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165824,7 +167019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ec6a498-2fa2-4fb7-a8ce-20b818c11b5f", + "id": "05831190-f866-4a3c-bf4f-a7895671a6b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165877,12 +167072,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2187489b-2c4b-4828-8d09-b39d5e1cf6fb", + "id": "c4150a19-0114-4e49-a8d8-13a8c82a6433", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165940,7 +167135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38282827-1927-4e93-873d-a9ecda4fa885", + "id": "b39b4126-92b8-4b61-8d57-0095286a0fb3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165993,7 +167188,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -166004,7 +167199,7 @@ } }, { - "id": "083348be-7d20-44f5-a3a9-acc0b76476a7", + "id": "0f3cb0e0-55ea-4379-acdd-fd21a400c59a", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -166057,7 +167252,7 @@ }, "response": [ { - "id": "e87154e5-0cf9-42a2-acf8-2079d3763c95", + "id": "9a1741fa-b1e8-4fff-9cff-fa1be8766daa", "name": "A work items details object.", "originalRequest": { "url": { @@ -166098,12 +167293,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"FORM\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "275afaf8-808f-4d33-b9a1-8809d1728877", + "id": "30400e34-38f8-49ee-a708-374c5ae28932", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166144,12 +167339,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6fa3828a-5711-4668-9605-5acbe252ee8f", + "id": "f1e9891e-964e-4a8f-9fa8-bede560f38f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166190,12 +167385,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7fbf8329-521f-4f90-a1a3-cf0b251d900a", + "id": "8c056e5f-9f28-41ff-9c18-098457ec512a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166236,7 +167431,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -166247,7 +167442,7 @@ } }, { - "id": "9efe1045-bafb-4e11-b1a8-0a4dc7f356d8", + "id": "1e4b27b0-e58f-47f0-955a-ca79f76b34dd", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -166300,7 +167495,7 @@ }, "response": [ { - "id": "1351daba-1378-422e-acbd-ac0ad0f2be96", + "id": "4095be4b-29f9-4793-96dc-e70e71f859be", "name": "A work items details object.", "originalRequest": { "url": { @@ -166341,12 +167536,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"FORM\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a876a725-eb5e-4700-8c4f-59eb69361b99", + "id": "788ab730-0133-4292-a28c-ec1d78958736", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166387,12 +167582,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ca1411a-9991-432f-ac80-5d49260d1ab0", + "id": "799658f4-3111-4b27-9f94-9cc136b4c6e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166433,12 +167628,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d85ffd47-a168-44b0-a4be-bf773b76077e", + "id": "dad7b7b2-1438-4e80-b9df-65e4ed1eae33", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166479,7 +167674,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -166490,7 +167685,7 @@ } }, { - "id": "43b65825-6afd-49de-80dc-bd615713b9fa", + "id": "9eecab83-0832-4901-8dae-788f91b7307c", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -166532,7 +167727,7 @@ }, "response": [ { - "id": "f536548c-5d38-4907-bcaf-fe51fc73b40f", + "id": "5b20f174-a752-4a53-953b-f1082080627a", "name": "A work items details object.", "originalRequest": { "url": { @@ -166572,12 +167767,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"FORM\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e838f71-5661-43ab-9ac3-757fe1aa45b6", + "id": "e536f89a-3ef4-401d-ab12-4d5988cbfad8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166617,12 +167812,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a7e451cf-924b-4719-a20f-6b5874e9285b", + "id": "04cb0ae1-2345-4510-bf1d-1331889e0898", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166662,12 +167857,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "38837e38-8e40-4e9c-9a6a-2561e9b2613b", + "id": "2eadbe38-235f-4334-9a4d-e075b02299ea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166707,7 +167902,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -166718,7 +167913,7 @@ } }, { - "id": "6d57984a-e11c-42fe-913e-64d46c0fda20", + "id": "7e2895fd-ea98-4783-9b8f-0326d22b9261", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -166760,7 +167955,7 @@ }, "response": [ { - "id": "8934ec12-8d2b-4a46-8429-49cf09475ad7", + "id": "826aafb8-1269-4ad3-b392-876486212697", "name": "A work items details object.", "originalRequest": { "url": { @@ -166800,12 +167995,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"FORM\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ca11134-30d4-46dc-be53-8f3fcbf24874", + "id": "ac114801-52a5-4469-880a-24b78025ca96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166845,12 +168040,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2a431dc7-c259-4dc4-99af-9b837362ce6a", + "id": "7dc3b241-b7ba-45b8-af4b-e2beb3679ea3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166890,12 +168085,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9d79cf4-de9e-4a84-a483-ea0ac7e563da", + "id": "1e24edf7-0298-41f3-ad37-58a2b2ccc598", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166935,7 +168130,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -166946,7 +168141,7 @@ } }, { - "id": "675418a1-1d83-4fdb-9dac-777bd6f6dbb1", + "id": "516adbdc-af28-4d92-8e5a-4fceca3ab0a1", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -166990,7 +168185,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ullamco2\": \"ut cupidatat culpa proident\",\n \"nisi0\": 27789309,\n \"fugiat_2\": \"ali\",\n \"Loremeef\": false\n}", + "raw": "{\n \"aute_d0\": 64925766.79744366,\n \"autef\": 86700891.24686223\n}", "options": { "raw": { "headerFamily": "json", @@ -167001,7 +168196,7 @@ }, "response": [ { - "id": "180aa0d6-70db-4acd-bb4b-a04df7ce1d18", + "id": "285a89b9-9e10-4a3b-bcdc-c6d9bf87c720", "name": "A work items details object.", "originalRequest": { "url": { @@ -167037,7 +168232,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ullamco2\": \"ut cupidatat culpa proident\",\n \"nisi0\": 27789309,\n \"fugiat_2\": \"ali\",\n \"Loremeef\": false\n}", + "raw": "{\n \"aute_d0\": 64925766.79744366,\n \"autef\": 86700891.24686223\n}", "options": { "raw": { "headerFamily": "json", @@ -167054,12 +168249,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"CANCELED\",\n \"type\": \"REMEDIATION\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"REJECTED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"REJECTED\",\n \"type\": \"FORM\",\n \"remediationItems\": {\n \"id\": \"\",\n \"targetId\": \"\",\n \"targetName\": \"\",\n \"targetDisplayName\": \"\",\n \"applicationName\": \"\",\n \"attributeName\": \"\",\n \"attributeOperation\": \"\",\n \"attributeValue\": \"\",\n \"nativeIdentity\": \"\"\n },\n \"approvalItems\": {\n \"id\": \"\",\n \"account\": \"\",\n \"application\": \"\",\n \"name\": \"\",\n \"operation\": \"\",\n \"value\": \"\",\n \"state\": \"FINISHED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0456d956-d9f2-4e48-b4af-f4db81cd41cb", + "id": "9c341c67-bd17-4c45-ab63-38dc9120308e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167095,7 +168290,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ullamco2\": \"ut cupidatat culpa proident\",\n \"nisi0\": 27789309,\n \"fugiat_2\": \"ali\",\n \"Loremeef\": false\n}", + "raw": "{\n \"aute_d0\": 64925766.79744366,\n \"autef\": 86700891.24686223\n}", "options": { "raw": { "headerFamily": "json", @@ -167112,12 +168307,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cbc9e8f5-cb35-4a30-9e4a-4c5f42f64cf5", + "id": "8becad59-6f7a-481d-96b6-9cdda5c9f7df", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167153,7 +168348,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ullamco2\": \"ut cupidatat culpa proident\",\n \"nisi0\": 27789309,\n \"fugiat_2\": \"ali\",\n \"Loremeef\": false\n}", + "raw": "{\n \"aute_d0\": 64925766.79744366,\n \"autef\": 86700891.24686223\n}", "options": { "raw": { "headerFamily": "json", @@ -167170,12 +168365,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "17617bf7-b1b5-4225-9691-e28ceec0adad", + "id": "a2caf0f0-2183-461b-95f1-aa9dc768d16f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167211,7 +168406,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ullamco2\": \"ut cupidatat culpa proident\",\n \"nisi0\": 27789309,\n \"fugiat_2\": \"ali\",\n \"Loremeef\": false\n}", + "raw": "{\n \"aute_d0\": 64925766.79744366,\n \"autef\": 86700891.24686223\n}", "options": { "raw": { "headerFamily": "json", @@ -167228,7 +168423,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -167245,7 +168440,7 @@ "description": "Workflows allow administrators to create custom automation scripts directly within IdentityNow. These automation scripts respond to [event triggers](https://developer.sailpoint.com/idn/docs/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 IdentityNow UI. Workflows can be configured via a graphical user interface within IdentityNow, 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": "bf720e41-2873-4708-9499-d57484ce6bf9", + "id": "70cb866b-cbdc-4f25-945b-5bf269b55dcc", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -167276,7 +168471,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"irure491\": -39610232.526327096\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_5d4\": -79851846,\n \"ullamco525\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167287,7 +168482,7 @@ }, "response": [ { - "id": "99f4d4f4-22bf-4f68-8694-5859f38c025c", + "id": "c9dd2f20-0d00-43de-bbc2-37b5b7070245", "name": "The Workflow object", "originalRequest": { "url": { @@ -167321,7 +168516,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"irure491\": -39610232.526327096\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_5d4\": -79851846,\n \"ullamco525\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167338,12 +168533,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"eu12e\": 28247146.604662627,\n \"reprehenderit3f\": false,\n \"veniamf4\": 768984,\n \"Utd7\": -19915378.024567068\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sit2\": 96396036,\n \"incididunt_f\": \"in ut consectetur\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "31350f1e-dd66-459e-ba91-c6daa30b8b83", + "id": "f87d468e-6a30-4b94-815b-8c6022d33628", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167377,7 +168572,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"irure491\": -39610232.526327096\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_5d4\": -79851846,\n \"ullamco525\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167394,12 +168589,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8cd1577-7f0f-4c8d-90cc-763ed5981a30", + "id": "e356e0e9-c2fd-45b6-ba23-abf13d0b3517", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167433,7 +168628,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"irure491\": -39610232.526327096\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_5d4\": -79851846,\n \"ullamco525\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167455,7 +168650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d509ae72-0a1b-4371-abff-904135aba9de", + "id": "35faec00-2f13-42e2-9cc6-82f494b8f559", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167489,7 +168684,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"irure491\": -39610232.526327096\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_5d4\": -79851846,\n \"ullamco525\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167506,12 +168701,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d915e2bb-4d51-40a5-9857-b15ee62ee8ed", + "id": "4d7b7eb1-99da-4b3e-a651-4de5e1509ab1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167545,7 +168740,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"irure491\": -39610232.526327096\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_5d4\": -79851846,\n \"ullamco525\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167567,7 +168762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54557e2f-0a4a-4a5a-a703-927ecb00b3bf", + "id": "fc4cfed6-11c2-4ac9-a4f2-ac42ccb749fe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167601,7 +168796,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"irure491\": -39610232.526327096\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sunt_5d4\": -79851846,\n \"ullamco525\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167618,7 +168813,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -167629,7 +168824,7 @@ } }, { - "id": "9501ea3f-89e9-42a3-95e6-fcf3e1b767d6", + "id": "b1ce5ed5-fff5-4fc5-9765-65139510298b", "name": "List Workflows", "request": { "name": "List Workflows", @@ -167658,7 +168853,7 @@ }, "response": [ { - "id": "258b5cc4-67df-4220-a6b0-0bc6a8872f1c", + "id": "9defd03e-aee8-4188-a8a2-3c4d2c8725a4", "name": "List of workflows", "originalRequest": { "url": { @@ -167696,12 +168891,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolore237\": -63995559,\n \"elitab\": 22314641.23759377\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n },\n {\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"id0\": false,\n \"mollit03\": \"non elit enim\",\n \"velitf\": 94201211.8922278\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"eiusmod26\": -86342244,\n \"magna_a6\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n },\n {\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"culpa592\": 69773793.52887931,\n \"consectetur_944\": false,\n \"Ut055\": 42185378.83934048\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "257082f6-78e0-4111-b6f8-c03cf92704e2", + "id": "892930ea-82ea-4e22-b97e-05270210ef8f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167739,12 +168934,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2ddf8001-e41f-4bce-9f78-b51bd182395d", + "id": "6ad56605-e1ef-4e29-8ef9-8a9195456fa6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167787,7 +168982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee9d61e3-c34b-40aa-ae82-4fb3ec21536b", + "id": "9973bdf4-8391-4ead-b5c5-0314504d34f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167825,12 +169020,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80205347-6bbd-475e-931f-902f1521c8e4", + "id": "e853f561-0050-4d33-ad6b-660b61817d03", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167873,7 +169068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f725c5d9-68d9-46e7-b0bd-ca140cde62b8", + "id": "38826477-8c8b-40dd-926e-ceecac2977ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167911,7 +169106,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -167922,7 +169117,7 @@ } }, { - "id": "298936ae-f2a8-4030-b049-973b8a52bb47", + "id": "035485ce-aa01-4694-8a9d-56fb710d8940", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -167963,7 +169158,7 @@ }, "response": [ { - "id": "883b3fae-6e7e-488b-8eea-9b6fba26d862", + "id": "607758e3-6296-4ce5-a59f-459e20b73bdf", "name": "The workflow object", "originalRequest": { "url": { @@ -168002,12 +169197,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"eu12e\": 28247146.604662627,\n \"reprehenderit3f\": false,\n \"veniamf4\": 768984,\n \"Utd7\": -19915378.024567068\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sit2\": 96396036,\n \"incididunt_f\": \"in ut consectetur\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0d7599df-563a-4743-8d5f-71ec2399dfdd", + "id": "fe8af5e6-e04a-43d7-8b7c-c9af95021e95", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168046,12 +169241,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "421081a7-23ce-497f-a87c-abb00615e59d", + "id": "d3dc0b19-3e34-4ba6-8e38-2f4cd50117c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168095,7 +169290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b52358e5-e88c-4f60-afda-1d1b247fe074", + "id": "a8888f66-3885-409f-9861-8f6f4fe99e01", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168134,12 +169329,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bd9847f4-75f8-4fad-bec1-f9868762eb0d", + "id": "f81badfb-e244-4f73-957d-0fe65d3297e7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168183,7 +169378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2d11b2d-1706-48b8-9809-c15f56312251", + "id": "c6418018-08fc-4e66-9206-2792b47e3419", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168222,7 +169417,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -168233,7 +169428,7 @@ } }, { - "id": "9a318a65-8bb0-4412-ae1a-e95e5365c6be", + "id": "0f665b9a-6145-462a-b8cc-76adfba7910e", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -168276,7 +169471,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolore5f\": 91844183.41909191\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"Lorem1\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -168287,7 +169482,7 @@ }, "response": [ { - "id": "3579f9da-fd99-42bb-b7be-5866188143a9", + "id": "1254bcd3-6bea-4a71-9c52-022252c70b77", "name": "The Workflow object", "originalRequest": { "url": { @@ -168322,7 +169517,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolore5f\": 91844183.41909191\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"Lorem1\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -168339,12 +169534,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"eu12e\": 28247146.604662627,\n \"reprehenderit3f\": false,\n \"veniamf4\": 768984,\n \"Utd7\": -19915378.024567068\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sit2\": 96396036,\n \"incididunt_f\": \"in ut consectetur\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48c63963-fbb0-4ff3-8a95-fac354f73824", + "id": "438753d3-c319-402d-bc7a-e12e5831473f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168379,7 +169574,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolore5f\": 91844183.41909191\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"Lorem1\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -168396,12 +169591,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0fa532e2-d74b-4fd4-9e64-e7e3d4532e76", + "id": "693b62a1-ec0e-4987-9bee-04994aba5e7b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168436,7 +169631,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolore5f\": 91844183.41909191\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"Lorem1\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -168458,7 +169653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "971a3487-f8ec-4e06-9d9c-348c9e05ce90", + "id": "94e70e0b-f6ce-4bf8-9369-dcf0e94bef03", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168493,7 +169688,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolore5f\": 91844183.41909191\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"Lorem1\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -168510,12 +169705,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7b26be1-0f6c-4e60-8da5-5c63369ee8fc", + "id": "585ebc8a-f6b5-4a28-bbf8-37311844fb13", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168550,7 +169745,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolore5f\": 91844183.41909191\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"Lorem1\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -168572,7 +169767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b80b0018-8e97-44bf-8e26-eac39846d1e4", + "id": "5b1c264e-f114-454c-868d-cfae0dd0896c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168607,7 +169802,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"dolore5f\": 91844183.41909191\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"Lorem1\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -168624,7 +169819,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -168635,7 +169830,7 @@ } }, { - "id": "1ac012c0-58d7-43b8-b4d4-0dc18aa389b6", + "id": "d93c49d2-5b17-4b4c-9140-d0ea0285d480", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -168678,7 +169873,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -168689,7 +169884,7 @@ }, "response": [ { - "id": "99e8ccbe-95d2-4ee7-aaf5-6f934813ae69", + "id": "25eec88c-7345-41ed-9e2c-111be785883f", "name": "The Workflow object", "originalRequest": { "url": { @@ -168724,7 +169919,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -168741,12 +169936,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"eu12e\": 28247146.604662627,\n \"reprehenderit3f\": false,\n \"veniamf4\": 768984,\n \"Utd7\": -19915378.024567068\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"executionCount\": \"\",\n \"failureCount\": \"\",\n \"created\": \"\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"name\": \"\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"description\": \"\",\n \"definition\": {\n \"start\": \"\",\n \"steps\": {\n \"sit2\": 96396036,\n \"incididunt_f\": \"in ut consectetur\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05f28a87-d801-4159-b258-fdc2d256f6e8", + "id": "43daecaa-5ede-4cba-9130-227f11a092c5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168781,7 +169976,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -168798,12 +169993,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c308fe6-4157-4a3c-8f32-b1350233a810", + "id": "8d3a1a77-769a-460f-92dc-8b595be2e25a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168838,7 +170033,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -168860,7 +170055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cee991af-2228-4564-8074-6f134033bbeb", + "id": "8926dad7-cba0-4ed0-9a37-bd9c40380ee1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168895,7 +170090,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -168912,12 +170107,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8baebe41-1cbb-4419-980d-857631fabaf9", + "id": "34983238-4fd1-4e7a-b6b5-2817777a7d29", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168952,7 +170147,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -168974,7 +170169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efcd6dc3-0579-458e-8931-7e679e0afab7", + "id": "f0183bcf-6403-4d02-a45f-45dc5bd180ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169009,7 +170204,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -169026,7 +170221,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -169037,7 +170232,7 @@ } }, { - "id": "7dda1dc4-abc1-48d4-8193-c6efa57298a8", + "id": "1a2c4fb0-c50f-47d7-bf8b-2a68cdaaf196", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -169078,7 +170273,7 @@ }, "response": [ { - "id": "8859f122-9dc7-42de-8960-5fdc7521352c", + "id": "62c3b2df-9c53-476d-bb09-630612c9eacb", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -169112,7 +170307,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5b5c532d-b608-4045-bb5b-d6846b6962f9", + "id": "52603609-971f-4169-8678-33320c2165d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169151,12 +170346,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9dac93c8-2d8d-4b9b-8f83-6417bf9677c1", + "id": "28a124f9-03cf-4107-80b4-4d45f51776a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169200,7 +170395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b86a043a-037e-4970-8cc0-b22084e4f0d5", + "id": "5bf82aca-375a-4ac6-8382-de320cb0d801", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169239,12 +170434,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5301149-4773-43ba-8aa0-b2e2f35bfddf", + "id": "ffe3235d-8765-47ed-983e-cbec505963f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169288,7 +170483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0928c095-506b-4181-92b4-153c66df5e13", + "id": "aa5854f9-e32a-4337-922a-5f7083b28e11", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169327,7 +170522,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -169338,7 +170533,7 @@ } }, { - "id": "a4bff37f-a2c3-45f0-8d7f-98962f0c9555", + "id": "4ff14022-79f0-4330-b96e-7ea040ac2fa1", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -169393,7 +170588,7 @@ }, "response": [ { - "id": "323d5b95-5bdc-42f4-97e8-255566004606", + "id": "94d45f7b-7069-49e1-a18b-5918a3335ebd", "name": "The Workflow object", "originalRequest": { "url": { @@ -169451,7 +170646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "946163eb-48ae-416e-a223-053a69aa6d45", + "id": "39e1271b-3637-4829-8b9f-788851863995", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169504,12 +170699,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aad49eb3-0e3a-4529-92ed-50a40ef2f2b7", + "id": "ca8668f6-6604-4d9f-acc4-22a850422632", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169567,7 +170762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b35f560-1781-4677-8294-9343c009d9bd", + "id": "3378907e-47f4-44b0-b871-0a999c242213", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169620,12 +170815,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ba683a8-1f5a-4dc5-b06a-e8707fa26121", + "id": "bc3e212b-c694-4fc3-91f5-7024000e6630", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169683,7 +170878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90003723-2bb8-4697-898d-f275f5dbeb75", + "id": "eb9122d7-686e-47a4-a348-a03b1ce72cdb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169736,7 +170931,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -169747,7 +170942,7 @@ } }, { - "id": "aa50ac69-6652-4aa9-8a4e-f1370f91b91c", + "id": "4e8b6b6b-16c6-43ea-8516-df7a87c205af", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -169826,7 +171021,7 @@ }, "response": [ { - "id": "6454cf03-26e7-45db-9fca-f11d5b0728c4", + "id": "46c99bf9-9bcb-47af-8465-bb5acb75a4a7", "name": "List of workflow executions for the given workflow", "originalRequest": { "url": { @@ -169903,12 +171098,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"workflowId\": \"\",\n \"requestId\": \"\",\n \"startTime\": \"\",\n \"closeTime\": \"\",\n \"status\": \"Failed\"\n },\n {\n \"id\": \"\",\n \"workflowId\": \"\",\n \"requestId\": \"\",\n \"startTime\": \"\",\n \"closeTime\": \"\",\n \"status\": \"Running\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"workflowId\": \"\",\n \"requestId\": \"\",\n \"startTime\": \"\",\n \"closeTime\": \"\",\n \"status\": \"Failed\"\n },\n {\n \"id\": \"\",\n \"workflowId\": \"\",\n \"requestId\": \"\",\n \"startTime\": \"\",\n \"closeTime\": \"\",\n \"status\": \"Canceled\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a0f13979-4533-4588-9c19-762b805728e7", + "id": "4054d46e-bf08-4806-8b25-39b6958e3118", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169985,12 +171180,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3a6160d-3392-4c41-9a37-c289a3c9f208", + "id": "80c75d8d-471e-4d77-a689-1361297c5e7a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170072,7 +171267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3be931ca-a6b4-4865-ad59-1dc25c2ab3be", + "id": "6b578b6e-bbaf-49de-8b42-f4be82214ad0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170149,12 +171344,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f526421e-6085-48c0-acb2-9c3df27368c6", + "id": "96d600c4-2365-4d49-97b4-a8f8d8a21419", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170231,12 +171426,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e74084a4-e27b-4f8c-8770-8f8cfc76c7aa", + "id": "2ea54425-ee1a-4eb8-981d-b5b2a4c6969f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170318,7 +171513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b70ff16-f744-403d-bf1a-426dcec59024", + "id": "00d9da13-f674-4569-aec4-43e3704d2a9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170395,7 +171590,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -170406,7 +171601,7 @@ } }, { - "id": "6fe420fd-d526-479c-98a3-0fbae2487349", + "id": "01d1a5a1-df91-4ba5-b7d6-81f24409e98f", "name": "Get a Workflow Execution", "request": { "name": "Get a Workflow Execution", @@ -170447,7 +171642,7 @@ }, "response": [ { - "id": "c48b17f8-d0d0-4aa3-aff1-15dc2b284c43", + "id": "6b03c18c-84ca-4340-ae11-c9ddc2e9086a", "name": "The workflow execution", "originalRequest": { "url": { @@ -170486,12 +171681,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"in nostrud\",\n \"workflowId\": \"mollit aliqua\",\n \"requestId\": \"magna\",\n \"startTime\": \"1958-02-11T06:29:37.378Z\",\n \"closeTime\": \"2009-11-05T09:56:21.916Z\",\n \"status\": \"Canceled\"\n },\n {\n \"id\": \"eu commodo ut\",\n \"workflowId\": \"exercitation quis laborum\",\n \"requestId\": \"ad enim\",\n \"startTime\": \"2017-05-11T16:39:39.577Z\",\n \"closeTime\": \"1982-03-22T10:26:04.143Z\",\n \"status\": \"Running\"\n }\n]", + "body": "[\n {\n \"id\": \"et esse exercitation\",\n \"workflowId\": \"sit Ut\",\n \"requestId\": \"amet mini\",\n \"startTime\": \"2016-07-24T08:17:36.600Z\",\n \"closeTime\": \"1981-07-25T23:27:09.956Z\",\n \"status\": \"Completed\"\n },\n {\n \"id\": \"ut deserunt officia occaecat\",\n \"workflowId\": \"dolor in\",\n \"requestId\": \"eu occaecat ullamco\",\n \"startTime\": \"1971-02-10T05:18:17.807Z\",\n \"closeTime\": \"1966-03-05T06:39:08.367Z\",\n \"status\": \"Failed\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da512faf-7f69-4f3c-af5b-72ba149c5d82", + "id": "38121a3f-2b80-4fca-a47f-7413ff7a04c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170530,12 +171725,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44a1cf0d-160c-47ae-bf81-5e413c7ac649", + "id": "a272c707-98a1-40f6-baf8-5b7e226eebb9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170579,7 +171774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08db64d5-20a3-4809-8bcc-104a64df18c3", + "id": "ca2d21cf-2cb7-4e17-a0d5-8a7ede0884c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170618,12 +171813,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "50b9581c-ef31-41ca-b95b-8a17f678cc66", + "id": "1d0c3b18-6dfa-4f79-a533-fec2d5fb78ab", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170662,12 +171857,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5aee1910-b139-434a-9c95-cfd9d0a53202", + "id": "b316ff5c-8176-42b8-a4eb-24c27275637a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170711,7 +171906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "581c1576-d798-414b-8c6e-0942c93b7672", + "id": "47c14589-55a5-44d3-9d29-99f7832f3792", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170750,7 +171945,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -170761,7 +171956,7 @@ } }, { - "id": "77c5aec8-38d6-4501-b16c-8d39ff80c096", + "id": "ed2057d3-a031-48f7-a1cd-217a75f00d6f", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -170803,7 +171998,7 @@ }, "response": [ { - "id": "7137f214-f04e-4bcc-b97c-e9e4e6e1195f", + "id": "b8540436-3d9b-48b9-ab87-61d08d3e1437", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -170843,12 +172038,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"type\": \"ActivityTaskStarted\",\n \"timestamp\": \"\",\n \"attributes\": {}\n },\n {\n \"type\": \"WorkflowExecutionStarted\",\n \"timestamp\": \"\",\n \"attributes\": {}\n }\n]", + "body": "[\n {\n \"type\": \"ActivityTaskCompleted\",\n \"timestamp\": \"\",\n \"attributes\": {}\n },\n {\n \"type\": \"WorkflowTaskFailed\",\n \"timestamp\": \"\",\n \"attributes\": {}\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "832a0227-2810-4dbd-97be-65639cced539", + "id": "730c2f54-a200-4885-95f9-9b8c9b41e93a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170888,12 +172083,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e1e3284d-9136-4e71-95c2-21eafccbf1ba", + "id": "2aa7184f-d8b1-4f71-b36f-a4b1b18f1c82", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170938,7 +172133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84c6cc2e-c222-4fba-ac08-734955d27fe8", + "id": "a23afc69-9a4a-4ff2-a196-5620e74c1def", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170978,12 +172173,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1077363d-0d1d-4c7a-9c11-4ebcb8ca9e53", + "id": "84dce835-b425-49d3-a81e-6950b0196d23", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -171023,12 +172218,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2c9b8f82-3b43-4fcf-bdc1-4cb86a5ba803", + "id": "ff1370ad-8e02-4b33-b3b2-3ee169c96c7b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171073,7 +172268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36e47fd8-1955-4f8a-adb7-a797d7ca080b", + "id": "838e79e9-ba18-4750-bd34-a5094ebd54bb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171113,7 +172308,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -171124,7 +172319,7 @@ } }, { - "id": "25d6f338-0b70-4144-a525-95fd079807a2", + "id": "4458c34f-03c1-410f-977d-2e18a69f3d51", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -171166,7 +172361,7 @@ }, "response": [ { - "id": "2020c24c-5809-4f85-867f-2077f269b51e", + "id": "54b3300a-e25f-44cb-8de7-11337eedce1c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -171201,7 +172396,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a27b7c33-3e71-4948-b8a1-a11f64bc28af", + "id": "6fe008a1-4c7f-4fdd-91ed-53ba18123a1e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171241,12 +172436,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6eae7e53-21bb-4899-91fa-1c7194cad8cc", + "id": "72262942-afe4-4d99-b32c-21a1dfe3003f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171291,7 +172486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66daf726-a486-4d39-b622-d37e98965a8d", + "id": "2b0dfcdc-ac8a-4105-8619-5bfb5259e384", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171331,12 +172526,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0c702e1-e227-495a-a865-3c71f08beb9a", + "id": "6129374c-c823-4fe6-896b-06bef522571e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -171376,12 +172571,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed9fea85-c643-4c2e-a2d4-1444590e8d2f", + "id": "6d0aa362-56b2-4c27-8561-58bc178fa860", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171426,7 +172621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1974c08d-028f-4e68-9763-f5401c17666b", + "id": "87a40e3f-7b2e-4124-ba45-13d7c644508d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171466,7 +172661,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -171477,7 +172672,7 @@ } }, { - "id": "d9001bdd-ddfc-4d7e-865a-e8df518aeca7", + "id": "6dd8aba3-fc47-4f80-b550-c64f335500af", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -171525,7 +172720,7 @@ }, "response": [ { - "id": "12945e50-ac62-40c0-a223-04f916f7a8fc", + "id": "35d12e4e-36c1-4621-ba75-754c50858863", "name": "List of workflow steps", "originalRequest": { "url": { @@ -171582,12 +172777,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"toggle\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"advancedToggle\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"json\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"number\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"boolean\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"secret\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"email\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"governanceGroupPicker\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ffd6967-6d4f-4c5c-9d4f-3bb9276f2481", + "id": "c3b97aeb-c32d-4b4e-984a-6b37017e73b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171644,12 +172839,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "54e6ef53-ad66-41a6-8157-272241b9f186", + "id": "584afa32-0f83-4952-b055-b93140a92c6b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171711,7 +172906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "610dd563-c1ec-4135-9603-a4b6388abe9d", + "id": "30e0b645-cf0a-4541-b383-570d701f09c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171768,12 +172963,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1ea4d11b-de4c-4ad3-a574-e3825ba7af33", + "id": "701f3d81-e0b1-4f5e-92d6-aeb67bf09248", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171835,7 +173030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7699d72-541a-4ff1-9878-b642d78d38f0", + "id": "c796c9ee-4930-4989-a2aa-1cdab3d9c419", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171892,7 +173087,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -171903,7 +173098,7 @@ } }, { - "id": "6bcc51d5-b279-43b8-8084-4eb699fe8638", + "id": "7938ec46-6a1c-4fc4-a983-d33aadc276b1", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -171961,7 +173156,7 @@ }, "response": [ { - "id": "3ad8b80c-7a95-44c5-bc5b-3e5d2aecb72e", + "id": "eeec5d70-9e90-407f-ba83-639ec67936b9", "name": "List of workflow actions", "originalRequest": { "url": { @@ -172028,12 +173223,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"toggle\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"advancedToggle\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"json\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"number\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"boolean\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"secret\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"email\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"governanceGroupPicker\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f945491a-68e8-45b0-8b17-c81822e84366", + "id": "f8a65bc2-a948-423d-9645-77c30d61ecfe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172100,12 +173295,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc8e76fa-fdc8-4b66-9183-3490704b7bb6", + "id": "8505b425-5e10-43fe-a031-99a62da78699", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172177,7 +173372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63fc5fba-c06d-46da-b516-eb55d2c7bdae", + "id": "58e4ba1e-7419-4db5-8996-4673339fd3c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172244,12 +173439,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8ee9110-082d-4f09-bb2e-74351927a01f", + "id": "44fd66c9-8118-4247-97e2-d3f6a77f49b2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172321,7 +173516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54f02e30-9e10-4360-adee-2c42fa76eab2", + "id": "348c529b-017b-4421-8f6e-393d33f4de9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172388,7 +173583,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -172399,7 +173594,7 @@ } }, { - "id": "6c163293-888f-409f-8ad0-d4667e9ffda3", + "id": "0e23ea1a-91b9-444e-ae22-211cbe7d43cf", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -172457,7 +173652,7 @@ }, "response": [ { - "id": "9aa2708a-4b17-4083-9a9f-5dc4dc3e4d4b", + "id": "b8dec525-df29-420f-9a37-2ec9c74923d5", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -172524,12 +173719,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"type\": \"SCHEDULED\",\n \"name\": \"\",\n \"description\": \"\",\n \"isDynamicSchema\": \"\",\n \"inputExample\": {},\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"checkbox\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"object\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"type\": \"EVENT\",\n \"name\": \"\",\n \"description\": \"\",\n \"isDynamicSchema\": \"\",\n \"inputExample\": {},\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"keyValuePairs\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"boolean\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"type\": \"EXTERNAL\",\n \"name\": \"\",\n \"description\": \"\",\n \"isDynamicSchema\": \"\",\n \"inputExample\": {},\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"checkbox\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"secret\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"type\": \"EVENT\",\n \"name\": \"\",\n \"description\": \"\",\n \"isDynamicSchema\": \"\",\n \"inputExample\": {},\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"identityPicker\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"identityPicker\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c5968d2b-efb7-49ee-a576-6614d4a765e9", + "id": "aa5ee0f3-268f-42e4-af37-c41da19b4e68", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172596,12 +173791,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c79bebcf-fccf-4088-b020-4a8309428d5f", + "id": "4e32418a-251e-4c48-8db2-1c2fdcce4533", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172673,7 +173868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "666b0958-f85b-449d-a14f-5563c1bb1011", + "id": "178d62a3-ba39-465f-b5f1-578f932325e1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172740,12 +173935,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3016f46f-5b8c-4b00-a1cc-79cc73e87d6a", + "id": "ba145348-0844-4195-a4cb-a44fde4896b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172817,7 +174012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "920d8c42-4438-4101-ac76-4f32c9496d3c", + "id": "1557693c-730e-4642-bd3a-732baa6975ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172884,7 +174079,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -172895,7 +174090,7 @@ } }, { - "id": "925df0cc-e4ca-4c96-a8ab-2c64ed68e50d", + "id": "c962510b-010d-436b-8f41-4f2e08841f17", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -172925,7 +174120,7 @@ }, "response": [ { - "id": "16f5da38-fdc0-45d4-b3df-4c27e69c51e5", + "id": "5846f2b6-4b71-460d-b641-e662586e89b7", "name": "List of workflow operators", "originalRequest": { "url": { @@ -172964,12 +174159,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"string\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"secret\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"jsonpath\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"textarea\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"emailPicker\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"secret\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"\",\n \"description\": \"\",\n \"formFields\": [\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"boolean\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"multiType\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4b3bbfee-b782-4e2e-855d-c3dae4568820", + "id": "4395ddc8-4f8b-4dc2-921d-0cc4849698e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173008,12 +174203,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c187cb2-3e62-4075-88f2-9d466369c3cb", + "id": "4c62e3bb-49ae-4138-bf47-296632cfe78e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173057,7 +174252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "774c5114-8d13-4c24-a97c-246d19329ad8", + "id": "19eb3556-fd7b-4d0e-b4d1-eea44bc74d8d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173096,12 +174291,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "679d1649-9448-48a7-ac27-0bf3c0545a83", + "id": "2113ae01-4748-46fa-865d-08430a25ae06", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173145,7 +174340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "770d01a0-dbf1-409c-9635-973a914651bf", + "id": "441df3ec-613d-469f-8780-84a3a8f71199", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173184,7 +174379,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -173195,7 +174390,7 @@ } }, { - "id": "4a703742-b5de-4b93-abbc-657b9eb265e0", + "id": "181f831d-139e-4787-967a-17dfc49d1da5", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -173238,7 +174433,7 @@ }, "response": [ { - "id": "eef82579-1345-4241-ab41-77a9b818108f", + "id": "626090f9-9cb4-4719-bf4d-64524299026b", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -173284,7 +174479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a64d3de-8b8c-4790-bb3f-7abc5fc6e89a", + "id": "2d056494-caa6-4518-9670-5c8b3b354aa8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173325,12 +174520,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e310d8f1-1f45-40e8-9399-21257ebf6791", + "id": "a21e8752-8959-47bd-b0ee-411ca430ac3d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173376,7 +174571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba193b36-722e-4cd9-990c-3ec99653cf7a", + "id": "b7f13e4a-f555-4de8-8d33-c70f866db9ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173417,12 +174612,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f26f0cec-c11f-4411-8fed-e46da34b2ec6", + "id": "9ec98ec0-a6bc-4ce1-b3ec-30c66ff172a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173468,7 +174663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98d1595b-e555-4a33-91fe-943eff33ff14", + "id": "72c3f082-b24c-4f0f-a4dc-00144e0701fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173509,7 +174704,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -173520,7 +174715,7 @@ } }, { - "id": "2c007a62-78de-4a91-af47-53908c57cb83", + "id": "162d43b5-80d9-4399-9251-b619a79ae5b8", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -173576,7 +174771,7 @@ }, "response": [ { - "id": "19619477-bfab-4015-a5de-34862ce496e1", + "id": "c8a792c1-97e2-4559-a43e-3dffef896765", "name": "The Workflow object", "originalRequest": { "url": { @@ -173635,7 +174830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f156224d-3fd1-4263-a948-832e5e52d6e8", + "id": "8bb87c7f-312b-4a96-b9f7-babfe53a49a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173689,12 +174884,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eea79daf-2752-4308-b7ea-2a7078fc804f", + "id": "61c1e602-23f1-4758-a756-20e446feb1f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173753,7 +174948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92cd1acb-f71d-454b-b2a4-432b4276b2f0", + "id": "23e55d02-813d-494c-846c-1910422b40e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173807,12 +175002,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7ac045d-e545-46a5-940d-313cdd248828", + "id": "424fcb4d-a152-4507-8572-bf44108a2c03", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173871,7 +175066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "812e5792-205c-4010-9aff-e33b5a467e0b", + "id": "4553887d-89d5-45ec-bb47-7558f5b4b7e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173925,7 +175120,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -173936,7 +175131,7 @@ } }, { - "id": "1318dae7-dca5-44d0-af43-7af3021f663f", + "id": "c699631d-231f-4a7f-99fe-12fbc86eab02", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -173993,7 +175188,7 @@ }, "response": [ { - "id": "a7d5e3c3-111f-482a-bef6-35b4c579133b", + "id": "ee348e24-824a-4414-88af-46bcf365b3dd", "name": "Responds with the test input", "originalRequest": { "url": { @@ -174053,7 +175248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d64077e6-ed8c-4b8c-9670-42f7153cb459", + "id": "027333b4-2d50-429a-a873-1efb0485fb1f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174108,12 +175303,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85edfb2c-fcd0-49b1-b336-274948ee19a2", + "id": "1ff63ecd-59cf-498c-92dc-3e2592b487b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174173,7 +175368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaf73c51-166a-4fdd-aa85-90a85d1682f7", + "id": "5055ce43-48e0-4545-8952-8c4c48662753", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174228,12 +175423,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5eb9b3da-97c3-4efd-b3bb-577977a58ce9", + "id": "b7ac88e4-45b4-4d0b-9773-13033c5d37db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174293,7 +175488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9392a5a-cf61-431e-9f15-41559764812c", + "id": "7c23f15e-cc0a-445b-9e87-702455312dfe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174348,7 +175543,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -174365,7 +175560,7 @@ "description": "", "item": [ { - "id": "3fe6ccf3-1886-4157-a7f6-be38492f049f", + "id": "9a9559f2-56bd-4e10-8426-a92b3733677a", "name": "List Reassignment Config Types", "request": { "name": "List Reassignment Config Types", @@ -174395,7 +175590,7 @@ }, "response": [ { - "id": "fc26ea11-2566-48d3-8327-69b5bf818a1d", + "id": "7c560b3b-536f-49f6-bea7-759349654643", "name": "List of Reassignment Configuration Types", "originalRequest": { "url": { @@ -174434,12 +175629,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"internalName\": \"MANUAL_TASKS\",\n \"displayName\": \"\",\n \"description\": \"\"\n },\n {\n \"internalName\": \"ACCESS_REQUESTS\",\n \"displayName\": \"\",\n \"description\": \"\"\n }\n]", + "body": "[\n {\n \"internalName\": \"ACCESS_REQUESTS\",\n \"displayName\": \"\",\n \"description\": \"\"\n },\n {\n \"internalName\": \"ACCESS_REQUESTS\",\n \"displayName\": \"\",\n \"description\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "42a86fef-4d19-479d-aa15-adce96ecf34e", + "id": "94ab9a88-6465-49a9-b256-3e1e8144673a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174478,12 +175673,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c29f1546-e464-4b57-b972-62edbebc94d4", + "id": "e08a8bfb-74ce-4a1d-a84b-859ff7968444", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174527,7 +175722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a1c93da-70fe-45c4-831b-6eb879b9d380", + "id": "5468b86f-858e-4f58-b560-5f8bd4cad946", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174566,12 +175761,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e2ee3a3-ab4d-43a4-9f75-561061e4366f", + "id": "15ffba4c-1538-4073-95f8-6d7466148a5e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174615,7 +175810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f26b17e-f35e-4d56-a2f9-5329b28274cd", + "id": "e4b4fead-57e7-42d7-b44c-e86204f69866", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174654,7 +175849,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -174665,7 +175860,7 @@ } }, { - "id": "5905e0f4-8b05-4c78-b5cf-1fae75f4eab3", + "id": "ad498bd3-ced9-417f-aac7-61df6ad7e46f", "name": "List Reassignment Configurations", "request": { "name": "List Reassignment Configurations", @@ -174694,7 +175889,7 @@ }, "response": [ { - "id": "4b168d62-7367-4462-bc13-96f6918e8013", + "id": "1dacb141-8cd6-4a62-a179-7648d15cda70", "name": "A list of Reassignment Configurations for an org", "originalRequest": { "url": { @@ -174732,12 +175927,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n },\n {\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"MANUAL_TASKS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"MANUAL_TASKS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n }\n]", + "body": "[\n {\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"MANUAL_TASKS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n },\n {\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aeaeedf1-b446-4e0f-a72a-dfdea67272a1", + "id": "94c685f8-228c-48a7-a6bc-f0bfb4b85cd5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174775,12 +175970,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "853b6ae5-e126-43ee-b97d-8a38c35f00be", + "id": "a673a34b-bf4b-43d6-a5a1-cd079732c656", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174823,7 +176018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20b9b86c-9e7f-4261-b6ea-aaeb3c1c4a7a", + "id": "96e7143b-a403-440d-93cc-520562fac596", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174861,12 +176056,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12131f8d-1269-43cd-acb3-8402b49a868a", + "id": "3acb16e0-497c-4744-a68e-eb052c2dbf91", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -174904,12 +176099,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "596e7e5e-83f5-40c3-aafb-43271497eaaa", + "id": "a3ad0cda-eb2e-4526-a65a-34dcf8bcbabd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174952,7 +176147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dab3f69-4089-4dc2-9866-bf67a3485e94", + "id": "9254a278-364f-4de6-980d-f26c1d071353", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174990,7 +176185,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -175001,7 +176196,7 @@ } }, { - "id": "da5b5bff-210e-4f37-b40b-a7d2cc3104ef", + "id": "6e37980c-97a6-4ffd-890c-5caee8c42df2", "name": "Create a Reassignment Configuration", "request": { "name": "Create a Reassignment Configuration", @@ -175032,7 +176227,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -175043,7 +176238,7 @@ }, "response": [ { - "id": "73d7dd4c-e498-4dc2-99b0-17e24c11ab7a", + "id": "d4108a3b-1055-49bb-98f9-03fc4af4106d", "name": "The newly created Reassignment Configuration object", "originalRequest": { "url": { @@ -175077,7 +176272,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -175094,12 +176289,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n}", + "body": "{\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5191152a-d400-4c06-9fc3-8e10a6d72c63", + "id": "0c9fa79a-36a4-44f9-9119-20b4363a42bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175133,7 +176328,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -175150,12 +176345,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3e8d7aa8-aa62-47c9-b4a6-756e10d3b0a9", + "id": "e3d8ed78-8288-4ce6-adc6-fd25245d8fcf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175189,7 +176384,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -175211,7 +176406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79d1ba05-db93-462e-bcff-bf41411bca36", + "id": "e1b66367-aac3-4433-990b-8f9e13643e18", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175245,7 +176440,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -175262,12 +176457,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "73a54e5a-097f-4788-a204-1abe93608d1f", + "id": "d153f2bd-0df1-4bf8-9d27-f70ceaaff947", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175301,7 +176496,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -175323,7 +176518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72148f5a-34ed-4c63-aae8-6cf80199c6fc", + "id": "f00f393d-0efb-463c-b28d-effb9ff060a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175357,7 +176552,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -175374,7 +176569,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -175385,7 +176580,7 @@ } }, { - "id": "30726c82-fd6b-4960-8c99-1d37ad4ef588", + "id": "f98a5ea4-c8b7-44fa-b563-952479bd02c0", "name": "Get Reassignment Configuration", "request": { "name": "Get Reassignment Configuration", @@ -175426,7 +176621,7 @@ }, "response": [ { - "id": "7faf48f9-3d90-4ffc-a237-07fd8508686e", + "id": "22aca95b-b507-4bdd-b723-5dc2a8466121", "name": "Reassignment Configuration for an identity", "originalRequest": { "url": { @@ -175465,12 +176660,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n}", + "body": "{\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46be0e1c-807e-431f-9714-ea272a1aa689", + "id": "b3760a0b-301d-4788-918e-8088b46d9a9b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175509,12 +176704,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "845f23fc-eb47-4426-9137-3726a068e815", + "id": "ca5cb823-2f4e-441c-8c57-cc74de12af4d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175558,7 +176753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae06fa47-7485-4c31-a0dd-8e33c60f4602", + "id": "1f9f4542-1cb6-4898-af5f-bb51c888506b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175597,12 +176792,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e973ebea-86f0-4c83-a390-eebcebf10681", + "id": "32c84913-8e78-4894-b0b8-50a3b37b60de", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175641,12 +176836,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cfbd14cc-6e1c-4558-a04b-7215d37fe3a3", + "id": "716c5530-94ee-4fc2-bc09-357d8287c7cf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175690,7 +176885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e1a9c60-eaab-4d67-b264-da5f7756e335", + "id": "572d2c42-c0c7-48d5-b0c3-e0de7fec43f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175729,7 +176924,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -175740,7 +176935,7 @@ } }, { - "id": "4ba898c2-2ab6-4c02-ae67-4193d7e27b0a", + "id": "80707b93-ac69-431b-a250-1b24856177e0", "name": "Update Reassignment Configuration", "request": { "name": "Update Reassignment Configuration", @@ -175783,7 +176978,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -175794,7 +176989,7 @@ }, "response": [ { - "id": "6401bb32-450b-4454-9ada-370a0e4d66fe", + "id": "058851cf-9841-47e5-b24e-ea9306c48ee2", "name": "Reassignment Configuration updated", "originalRequest": { "url": { @@ -175829,7 +177024,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -175846,12 +177041,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"ACCESS_REQUESTS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n}", + "body": "{\n \"identity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"configDetails\": [\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n },\n {\n \"configType\": \"CERTIFICATIONS\",\n \"targetIdentity\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"auditDetails\": {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"modifiedBy\": {\n \"id\": \"\",\n \"name\": \"\"\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63fc8434-31c5-4f59-a9f2-2471b855aec3", + "id": "24478f79-6358-4fde-a304-e1a677f1c6aa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175886,7 +177081,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -175903,12 +177098,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "984282a3-ffc8-4cc1-95c2-8c2e3deae31f", + "id": "48d1e855-6940-4a52-aa6b-a9430d9f8a9b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175943,7 +177138,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -175965,7 +177160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fe2b5e5-6054-4391-9b78-4fbc184ff97a", + "id": "2155faac-2804-4007-bffa-6821a7398ebc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176000,7 +177195,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -176017,12 +177212,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb3ecf7b-435c-4e95-9267-a246bed2d652", + "id": "e273f123-6829-45f1-bdb3-a7212ce4becf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176057,7 +177252,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -176079,7 +177274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59975eb0-74d7-4a70-90a7-20bad9130c53", + "id": "ade8dd1b-8c95-43c0-afe2-a7029b68cfa0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176114,7 +177309,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"ACCESS_REQUESTS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -176131,7 +177326,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -176142,7 +177337,7 @@ } }, { - "id": "a900a643-c321-4c21-93e2-d95b23050f94", + "id": "ccd7c346-14a7-4c5f-8bd3-5ed665dcd30c", "name": "Delete Reassignment Configuration", "request": { "name": "Delete Reassignment Configuration", @@ -176183,7 +177378,7 @@ }, "response": [ { - "id": "a70310da-8c40-4efe-8c93-adc700c77649", + "id": "dda892ec-6712-4945-9ea4-a28c8e442395", "name": "Reassignment Configuration deleted", "originalRequest": { "url": { @@ -176217,7 +177412,7 @@ "_postman_previewlanguage": "text" }, { - "id": "cff61e45-5bfb-4d99-8e37-a0c4a7c748a6", + "id": "1003487c-a297-4efe-9afd-01bcda03015a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176256,12 +177451,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ba7d1be4-c764-4256-bd9c-6626e270ab36", + "id": "de601751-6740-4b4b-a141-f5b23a7d0845", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176305,7 +177500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "632a9775-4938-4b48-9bec-5dbc298a1b60", + "id": "b80d75e0-398d-44d6-916b-77aa3cfb9747", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176344,12 +177539,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dad15a8d-3439-4ca9-a4a8-749116644656", + "id": "9e86bc80-7373-47c4-9273-f955369b52dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176393,7 +177588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2657eae-ac54-4f03-80f7-3977a2e0b1de", + "id": "fe966228-1ca1-4444-ab28-525b34b6c1fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176432,7 +177627,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -176443,7 +177638,7 @@ } }, { - "id": "481daaa1-a7d4-4a41-a619-d807f9d3c422", + "id": "8bc60f4c-df5e-4379-a914-f43c99feea37", "name": "Evaluate Reassignment Configuration", "request": { "name": "Evaluate Reassignment Configuration", @@ -176515,7 +177710,7 @@ }, "response": [ { - "id": "3659c517-2192-443e-863c-eb3f8e71d908", + "id": "f564ea9a-d0d8-415e-9486-016f86ffc237", "name": "Evaluated Reassignment Configuration", "originalRequest": { "url": { @@ -176566,12 +177761,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"reassignToId\": \"\",\n \"lookupTrail\": [\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION,\"\n },\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION,\"\n }\n ]\n },\n {\n \"reassignToId\": \"\",\n \"lookupTrail\": [\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT,\"\n },\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT,\"\n }\n ]\n }\n]", + "body": "[\n {\n \"reassignToId\": \"\",\n \"lookupTrail\": [\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT,\"\n },\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"MANUAL_REASSIGNMENT,\"\n }\n ]\n },\n {\n \"reassignToId\": \"\",\n \"lookupTrail\": [\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"MANUAL_REASSIGNMENT,\"\n },\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT,\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dd50d5da-b56f-4672-8944-512faec91e78", + "id": "01bf7eeb-75a4-4aba-bb9d-b343e0e4dc26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176622,12 +177817,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "11179f87-5db8-455d-ba75-e8a627fc9b31", + "id": "332a6190-ae5a-4f56-9aec-92e977d34cdc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176683,7 +177878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e8370d8-f300-4b52-891c-a22b435df21d", + "id": "9ad6b7e3-fb78-4e8c-b54f-f5b7663d4cd3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176734,12 +177929,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "409374b3-2334-4dc8-99d1-9e2a4b33c344", + "id": "30dcda94-49cd-43fb-b818-728a662f992c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176795,7 +177990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cbb1d75-6c31-4d18-b18e-7f13abc48384", + "id": "673ae27a-815e-4d0a-84a1-4fe45df95086", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176846,7 +178041,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -176857,7 +178052,7 @@ } }, { - "id": "0ff20d3d-6278-472a-9ed0-53b3ceaebfab", + "id": "f64df7ab-2f7b-4d82-8fa4-f0bad57daa9b", "name": "Get Tenant-wide Reassignment Configuration settings", "request": { "name": "Get Tenant-wide Reassignment Configuration settings", @@ -176887,7 +178082,7 @@ }, "response": [ { - "id": "9b714457-b7c8-4808-8c0d-d42e1b18c15a", + "id": "79e02ee0-5158-4bf8-9263-78960714de97", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -176931,7 +178126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b93816a0-3e42-4076-8ae9-0072437810dd", + "id": "545634d8-5a22-44b6-a1f1-9afc3881da98", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176970,12 +178165,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15430758-b78d-4d99-aebc-46cb12fa82df", + "id": "7c040cbd-ac6b-4df5-b074-b40a0cd9c463", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177019,7 +178214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71ffc453-20d7-40df-849b-6aa73689914f", + "id": "bdbe7796-f0a7-4282-9b75-4ae1fe0654c2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177058,12 +178253,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2a5103ab-cc46-4b1a-9d39-1f97c1b94215", + "id": "1df91635-e690-481d-b69a-73198ea056d6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -177102,12 +178297,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "91e33d00-ca9f-4016-a7fa-669e2aec0bb2", + "id": "43c062df-bcb3-4c46-b459-55f4405de723", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177151,7 +178346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffa1c64a-5d3e-472e-b54e-557e8c1e4c45", + "id": "14d864ae-8d15-44ab-a423-799f3873ae24", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177190,7 +178385,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -177201,7 +178396,7 @@ } }, { - "id": "84e72a1e-4c22-4aa6-87b2-77cfb19b4232", + "id": "767abd95-2118-4b9d-b317-3ca64a3ac929", "name": "Update Tenant-wide Reassignment Configuration settings", "request": { "name": "Update Tenant-wide Reassignment Configuration settings", @@ -177244,7 +178439,7 @@ }, "response": [ { - "id": "75f8db92-382f-4a6f-8cfa-e46eda6414c7", + "id": "f3b1dfb2-bbbc-4b41-9205-9ab710e35733", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -177301,7 +178496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f47078a-3849-4193-90b1-88adbb0870b7", + "id": "6f3ee127-a950-468c-aade-a72ba5c20a01", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177353,12 +178548,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "097400d1-38ee-4191-bbd8-729af89f7f0a", + "id": "0d001b7b-6941-4f69-bf1f-75b681604579", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177415,7 +178610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f9fb7ef-f802-46ed-82fa-dc471f8914e1", + "id": "38301572-a2e7-464c-91f0-6b32bd7b14e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177467,12 +178662,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6a0145f-ef27-4020-bb56-8e298ab0c82f", + "id": "95f45bb5-03f7-4dbf-af16-0ac65980351c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177529,7 +178724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a81a05c-ab74-4f54-8605-0016406db7bd", + "id": "d5e4c904-6cf7-4c49-bc70-d2d819b93b04", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177581,7 +178776,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -177598,7 +178793,7 @@ "description": "", "item": [ { - "id": "4d4e1339-128e-47d7-abe5-93029886e156", + "id": "b5703eed-4e4e-4b91-962d-51c190fca8db", "name": "Retrieve a task status list.", "request": { "name": "Retrieve a task status list.", @@ -177673,7 +178868,7 @@ }, "response": [ { - "id": "271b1158-cbf1-428a-9d1b-e8fc035f9dfb", + "id": "da61806f-63d4-4d62-b98a-9586ef6d306c", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -177757,12 +178952,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"cupidatat56a\": false,\n \"ex7\": 73658628\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"TempError\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"ERROR\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"type\": \"QUEUED_TASK\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"consequat77\": -60814152.3512236\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Error\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"ERROR\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"type\": \"QUEUED_TASK\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"este\": -78102900.6895419\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Success\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"ERROR\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"WARN\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"irure_e_\": \"ut\",\n \"nulla3\": false\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Warning\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"WARN\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "064abddf-b84c-497e-baf4-2c196cb95375", + "id": "fbf7e1be-9461-4f32-8fff-6e8f9983905c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177846,12 +179041,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63342f54-bb1e-4f39-a035-64a5100d680b", + "id": "ab664161-570d-42c2-bf99-29302a0ed95f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177940,7 +179135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1409ead-e776-4add-867c-4473ee75fec6", + "id": "e290f219-8f11-4fa5-9fc8-0e9ea9cfcc88", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178024,12 +179219,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3439e2b8-6dbb-49f9-a22b-3502451d72f4", + "id": "c8e8d1da-02e1-4cde-9d86-4a6ee44bd3e2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -178113,12 +179308,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e3d42e27-8a56-499a-9a93-e2bb98b0415a", + "id": "41073ebe-a1b8-47b4-852d-7c48363c9c3c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178207,7 +179402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9d22a3e-f368-48b2-84db-563200968fbb", + "id": "f2f63e2a-c939-4d1e-9ebd-315afc9870de", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178291,7 +179486,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -178302,7 +179497,7 @@ } }, { - "id": "fd674599-7da9-4e38-aad5-102a36e18a7d", + "id": "e1e033b0-34d3-4df2-851b-adb73d18e5fc", "name": "Get task status by ID.", "request": { "name": "Get task status by ID.", @@ -178343,7 +179538,7 @@ }, "response": [ { - "id": "2bd23935-c8d1-4b81-a4dc-ccc2d4de5b8b", + "id": "71680744-5059-4406-819d-c29023ffbd6a", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -178382,12 +179577,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"Excepteur3f8\": -65058972.55906219,\n \"nulla_30a\": 47552133.70157763,\n \"qui_4\": \"anim fugiat\"\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Terminated\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n}", + "body": "{\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"sinte5\": \"quis amet\"\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Success\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"WARN\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"ERROR\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a32c7d9-4de9-4696-b243-a3f12920b3cf", + "id": "ace6bb99-11c8-4d27-a3b3-fa50b3b05a6d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178426,12 +179621,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "982f60f9-4e74-4eaf-b60c-ace463ededa3", + "id": "6490d542-0410-4c50-a47d-a75dad3324a5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178475,7 +179670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "564de923-e5b9-45b5-821c-650892fed973", + "id": "c2a5d887-5a24-44ee-a782-2152dd9a8b82", "name": "Forbidden, generally due to a lack of security rights", "originalRequest": { "url": { @@ -178509,7 +179704,7 @@ "_postman_previewlanguage": "text" }, { - "id": "046e7329-76b6-4d4d-bf10-aebfbdb12ec5", + "id": "3ed4177c-bfef-4194-ab37-7c06dd190ca5", "name": "TaskStatus with the given id was not found.", "originalRequest": { "url": { @@ -178543,7 +179738,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d31625f4-cc94-4e34-86d7-ea7c4769c76b", + "id": "d9f11eaf-83fc-4571-9faf-b68b55ee16dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178587,7 +179782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1239b829-ded3-4559-9f30-bf6698959262", + "id": "02ed2048-4769-4cbd-8550-fe6006a400c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178626,7 +179821,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -178637,7 +179832,7 @@ } }, { - "id": "94b3e0b4-c485-4609-8f04-d0b478e9596b", + "id": "eb29b2df-1006-4097-bf61-6085db6fb2a1", "name": "Update task status by ID", "request": { "name": "Update task status by ID", @@ -178680,7 +179875,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -178691,7 +179886,7 @@ }, "response": [ { - "id": "5228262a-3473-4f10-a7d2-6b60dfc4771d", + "id": "60265a4e-a04e-42e3-86c4-18f5bb225242", "name": "Responds with the updated TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -178726,7 +179921,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -178743,12 +179938,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"Excepteur3f8\": -65058972.55906219,\n \"nulla_30a\": 47552133.70157763,\n \"qui_4\": \"anim fugiat\"\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Terminated\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n}", + "body": "{\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"sinte5\": \"quis amet\"\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Success\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"WARN\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"ERROR\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6db187fb-c7a7-4a10-ae92-0fb9cdb41c14", + "id": "90667d54-6be3-4bd5-942b-67513dceb4bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178783,7 +179978,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -178800,12 +179995,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d2be24c6-1d15-4d48-a48a-7cc2684de384", + "id": "78b454e1-ec23-443d-b1c6-3b343bccef8e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178840,7 +180035,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -178862,7 +180057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6122840-c76d-46e8-87d8-41c16d1eff40", + "id": "1147e259-c63e-48bb-9c8d-d4424b682065", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178897,7 +180092,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -178914,12 +180109,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ffdb113-3222-40a4-8f8c-dc2c0941b60e", + "id": "7fd8b8c4-c960-4b85-8278-bc81867ae65f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -178954,7 +180149,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -178971,12 +180166,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4198924a-371b-4e76-b5e8-fa6cb4458898", + "id": "58132cdb-f095-4360-84e8-f3eedcd4f29a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179011,7 +180206,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -179033,7 +180228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "887f9866-1ab8-4c67-904d-289d70f9651f", + "id": "2f292c6c-f803-45a4-a891-995ca373071b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179068,7 +180263,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -179085,7 +180280,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -179096,7 +180291,7 @@ } }, { - "id": "8d30b05f-f390-4e10-b8a3-a68d5b7a68d5", + "id": "eec07f02-88eb-4533-a195-f1328ddbac9a", "name": "Retrieve a pending task list.", "request": { "name": "Retrieve a pending task list.", @@ -179172,7 +180367,7 @@ }, "response": [ { - "id": "cd717eaf-a1df-4adc-a36d-83ad71066d68", + "id": "c3ace3d9-c335-42af-8fc5-77dcae9107fc", "name": "Responds with a list of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -179257,12 +180452,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"cupidatat56a\": false,\n \"ex7\": 73658628\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"TempError\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"ERROR\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"type\": \"QUEUED_TASK\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"consequat77\": -60814152.3512236\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Error\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"ERROR\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"type\": \"QUEUED_TASK\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"este\": -78102900.6895419\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Success\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"ERROR\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"WARN\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"irure_e_\": \"ut\",\n \"nulla3\": false\n },\n \"created\": \"\",\n \"modified\": \"\",\n \"launched\": \"\",\n \"launcher\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"Warning\",\n \"messages\": [\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"INFO\"\n },\n {\n \"key\": \"\",\n \"localizedText\": {\n \"locale\": \"\",\n \"message\": \"\"\n },\n \"type\": \"WARN\"\n }\n ],\n \"progress\": \"\",\n \"percentComplete\": \"\",\n \"returns\": [\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n },\n {\n \"name\": \"\",\n \"attributeName\": \"\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b224cc9-35e8-4400-95b8-4440592b9531", + "id": "c33c528c-ba2f-461d-ba01-531d2ddca325", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -179342,7 +180537,7 @@ "_postman_previewlanguage": "text" }, { - "id": "af3b9c92-02fc-4572-a0b8-59c0b808c23c", + "id": "8db8887d-9526-4a6e-a7f7-8426ab0e1571", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179427,12 +180622,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b46a6b5b-3584-41e2-a069-b00fe0531371", + "id": "d80aaaae-859b-45c7-9787-7a4b23196594", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179517,7 +180712,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -179528,7 +180723,7 @@ } }, { - "id": "4092fb58-19fb-4fa4-801a-489af2254226", + "id": "9963d2f9-0813-452f-bf1e-88fa43744692", "name": "Retrieve headers only for pending task list.", "request": { "name": "Retrieve headers only for pending task list.", @@ -179604,7 +180799,7 @@ }, "response": [ { - "id": "b2e93938-4052-43ba-9607-a67ece44af92", + "id": "8efbaecb-a128-4d98-a45c-1442f31eaf68", "name": "Responds with headers for List of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -179684,7 +180879,7 @@ "_postman_previewlanguage": "text" }, { - "id": "93e9e9c0-74ab-44e1-b315-ff4aed600891", + "id": "e614fbc5-ed8a-4a29-9e48-d5d282814c2e", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -179764,7 +180959,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0594cb70-b6ad-424b-8579-04096c95baab", + "id": "35162c9f-5994-472b-ad09-856fbc7fca8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179849,12 +181044,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "18662e89-d441-46d8-af17-0daedf6fcafc", + "id": "9840f30c-6d83-41c5-9707-dbdb79a9fdd8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179939,7 +181134,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -180030,7 +181225,7 @@ } ], "info": { - "_postman_id": "a3050d23-8abd-4507-9ad0-0068ac2e0085", + "_postman_id": "711fd4cd-efc2-4fa8-91a9-c3f4ce9f2025", "name": "IdentityNow Beta API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": { diff --git a/postman/links/beta-link.txt b/postman/links/beta-link.txt index 4e9f85b..9c537bb 100644 --- a/postman/links/beta-link.txt +++ b/postman/links/beta-link.txt @@ -1 +1 @@ -https://god.gw.postman.com/run-collection/23226990-c6aba0db-f575-4d8f-87e9-f2616c590d36?action=collection%2Ffork&collection-url=entityId%3D23226990-c6aba0db-f575-4d8f-87e9-f2616c590d36%26entityType%3Dcollection%26workspaceId%3D80af54be-a333-4712-af5e-41aa9eccbdd0 \ No newline at end of file +https://god.gw.postman.com/run-collection/23226990-b054eb29-6492-462c-8348-099833649073?action=collection%2Ffork&collection-url=entityId%3D23226990-b054eb29-6492-462c-8348-099833649073%26entityType%3Dcollection%26workspaceId%3D80af54be-a333-4712-af5e-41aa9eccbdd0 \ No newline at end of file