diff --git a/dereferenced/deref-sailpoint-api.beta.yaml b/dereferenced/deref-sailpoint-api.beta.yaml index b725b3d..9c4aa54 100644 --- a/dereferenced/deref-sailpoint-api.beta.yaml +++ b/dereferenced/deref-sailpoint-api.beta.yaml @@ -132023,6 +132023,1904 @@ paths: - locale: en-US localeOrigin: DEFAULT text: An internal fault occurred. + /task-status: + get: + tags: + - Task Management + summary: Retrieve a task status list. + description: Get a TaskStatus list. + operationId: getTaskStatusList + parameters: + - in: query + name: limit + description: |- + Max number of results to return. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 250 + schema: + type: integer + format: int32 + minimum: 0 + maximum: 250 + default: 250 + - in: query + name: offset + description: |- + Offset into the full result set. Usually specified with *limit* to paginate through the results. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 0 + schema: + type: integer + format: int32 + minimum: 0 + default: 0 + - in: query + name: count + description: |- + If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. + + Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. + + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: true + schema: + type: boolean + default: false + - in: query + name: filters + schema: + type: string + example: completionStatus eq "Success" + required: false + description: |- + Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) + Filtering is supported for the following fields and operators: + **id**: *eq, in* + **sourceId**: *eq, in* + **completionStatus**: *eq, in* + **type**: *eq, in* "CLOUD_ACCOUNT_AGGREGATION", "CLOUD_GROUP_AGGREGATION", "CLOUD_PROCESS_UNCORRELATED_ACCOUNTS" or "CLOUD_REFRESH_ROLE" + - in: query + name: sorters + schema: + type: string + format: comma-separated + example: '-created' + required: false + description: |- + 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: **created** + responses: + '200': + description: Responds with a TaskStatus for the task with the given task ID. + content: + application/json: + schema: + type: array + items: + description: Details and current status of a specific task + required: + - id + - type + - uniqueName + - description + - parentName + - attributes + - created + - modified + - launched + - launcher + - completed + - completionStatus + - messages + - progress + - percentComplete + - returns + type: object + properties: + id: + description: System-generated unique ID of the task this TaskStatus represents + type: string + example: id12345 + type: + description: Type of task this TaskStatus represents + type: string + enum: + - QUARTZ + - QPOC + - QUEUED_TASK + example: QUARTZ + uniqueName: + description: Name of the task this TaskStatus represents + type: string + example: Big Task + description: + description: Description of the task this TaskStatus represents + type: string + example: A Really Big Task + parentName: + description: Name of the parent of the task this TaskStatus represents + type: string + example: Parent Task + launcher: + description: Service to execute the task this TaskStatus represents + type: string + example: sweep + created: + description: Creation date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + modified: + description: Last modification date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + launched: + description: Launch date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + completed: + description: Completion date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + completionStatus: + description: Completion status of the task this TaskStatus represents + type: string + enum: + - Success + - Warning + - Error + - Terminated + - TempError + example: Success + messages: + description: Messages associated with the task this TaskStatus represents + type: array + items: + description: TaskStatus Message + required: + - key + - localizedText + - type + - parameters + type: object + properties: + type: + description: Type of the message + type: string + enum: + - INFO + - WARN + - ERROR + example: INFO + localizedText: + description: Localized form of the message + type: object + required: + - locale + - message + properties: + locale: + description: Message locale + type: string + example: An error has occurred! + message: + description: Message text + type: string + example: Error has occurred! + key: + description: Key of the message + type: string + example: akey + parameters: + description: Message parameters for internationalization + type: array + items: + type: object + example: + - name: value + returns: + description: Return values from the task this TaskStatus represents + type: array + items: + description: Task return details + required: + - name + - attributeName + type: object + properties: + name: + description: Display name of the TaskReturnDetails + type: string + example: label + attributeName: + description: Attribute the TaskReturnDetails is for + type: string + example: identityCount + attributes: + description: Attributes of the task this TaskStatus represents + type: object + additionalProperties: true + example: + identityCount: 0 + progress: + description: Current progress of the task this TaskStatus represents + type: string + example: Started + percentComplete: + description: Current percentage completion of the task this TaskStatus represents + type: integer + example: 100 + '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. + security: + - UserContextAuth: + - 'idn:task-management:read' + '/task-status/{id}': + get: + tags: + - Task Management + summary: Get task status by ID. + description: Get a TaskStatus for a task by task ID. + operationId: getTaskStatus + parameters: + - name: id + in: path + description: Task ID of the TaskStatus to get + required: true + style: simple + explode: false + schema: + type: string + example: anId + responses: + '200': + description: Responds with a TaskStatus for the task with the given task ID. + content: + application/json: + schema: + description: Details and current status of a specific task + required: + - id + - type + - uniqueName + - description + - parentName + - attributes + - created + - modified + - launched + - launcher + - completed + - completionStatus + - messages + - progress + - percentComplete + - returns + type: object + properties: + id: + description: System-generated unique ID of the task this TaskStatus represents + type: string + example: id12345 + type: + description: Type of task this TaskStatus represents + type: string + enum: + - QUARTZ + - QPOC + - QUEUED_TASK + example: QUARTZ + uniqueName: + description: Name of the task this TaskStatus represents + type: string + example: Big Task + description: + description: Description of the task this TaskStatus represents + type: string + example: A Really Big Task + parentName: + description: Name of the parent of the task this TaskStatus represents + type: string + example: Parent Task + launcher: + description: Service to execute the task this TaskStatus represents + type: string + example: sweep + created: + description: Creation date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + modified: + description: Last modification date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + launched: + description: Launch date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + completed: + description: Completion date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + completionStatus: + description: Completion status of the task this TaskStatus represents + type: string + enum: + - Success + - Warning + - Error + - Terminated + - TempError + example: Success + messages: + description: Messages associated with the task this TaskStatus represents + type: array + items: + description: TaskStatus Message + required: + - key + - localizedText + - type + - parameters + type: object + properties: + type: + description: Type of the message + type: string + enum: + - INFO + - WARN + - ERROR + example: INFO + localizedText: + description: Localized form of the message + type: object + required: + - locale + - message + properties: + locale: + description: Message locale + type: string + example: An error has occurred! + message: + description: Message text + type: string + example: Error has occurred! + key: + description: Key of the message + type: string + example: akey + parameters: + description: Message parameters for internationalization + type: array + items: + type: object + example: + - name: value + returns: + description: Return values from the task this TaskStatus represents + type: array + items: + description: Task return details + required: + - name + - attributeName + type: object + properties: + name: + description: Display name of the TaskReturnDetails + type: string + example: label + attributeName: + description: Attribute the TaskReturnDetails is for + type: string + example: identityCount + attributes: + description: Attributes of the task this TaskStatus represents + type: object + additionalProperties: true + example: + identityCount: 0 + progress: + description: Current progress of the task this TaskStatus represents + type: string + example: Started + percentComplete: + description: Current percentage completion of the task this TaskStatus represents + type: integer + example: 100 + '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, generally due to a lack of security rights' + '404': + description: TaskStatus with the given id was not found. + '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. + security: + - UserContextAuth: + - 'idn:task-management:read' + patch: + tags: + - Task Management + summary: Update task status by ID + description: Update a current TaskStatus for a task by task ID. + operationId: updateTaskStatus + parameters: + - name: id + in: path + description: Task ID of the task whose TaskStatus to update + required: true + style: simple + explode: false + schema: + type: string + example: anId + requestBody: + content: + application/json-patch+json: + schema: + type: object + description: 'A JSONPatch document as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)' + properties: + operations: + description: Operations to be applied + type: array + items: + type: object + description: 'A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)' + required: + - op + - path + properties: + op: + type: string + description: The operation to be performed + enum: + - add + - remove + - replace + - move + - copy + - test + example: replace + path: + type: string + description: A string JSON Pointer representing the target path to an element to be affected by the operation + example: /description + value: + anyOf: + - type: string + - type: integer + - type: object + - type: array + items: + anyOf: + - type: string + - type: integer + - type: object + description: 'The value to be used for the operation, required for "add" and "replace" operations' + example: New description + example: "[\n {\n\t \"op\": \"replace\",\n\t \"path\": \"/description\",\n\t \"value\": \"A new description\"\n }\n]" + required: true + responses: + '200': + description: Responds with the updated TaskStatus for the task with the given task ID. + content: + application/json: + schema: + description: Details and current status of a specific task + required: + - id + - type + - uniqueName + - description + - parentName + - attributes + - created + - modified + - launched + - launcher + - completed + - completionStatus + - messages + - progress + - percentComplete + - returns + type: object + properties: + id: + description: System-generated unique ID of the task this TaskStatus represents + type: string + example: id12345 + type: + description: Type of task this TaskStatus represents + type: string + enum: + - QUARTZ + - QPOC + - QUEUED_TASK + example: QUARTZ + uniqueName: + description: Name of the task this TaskStatus represents + type: string + example: Big Task + description: + description: Description of the task this TaskStatus represents + type: string + example: A Really Big Task + parentName: + description: Name of the parent of the task this TaskStatus represents + type: string + example: Parent Task + launcher: + description: Service to execute the task this TaskStatus represents + type: string + example: sweep + created: + description: Creation date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + modified: + description: Last modification date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + launched: + description: Launch date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + completed: + description: Completion date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + completionStatus: + description: Completion status of the task this TaskStatus represents + type: string + enum: + - Success + - Warning + - Error + - Terminated + - TempError + example: Success + messages: + description: Messages associated with the task this TaskStatus represents + type: array + items: + description: TaskStatus Message + required: + - key + - localizedText + - type + - parameters + type: object + properties: + type: + description: Type of the message + type: string + enum: + - INFO + - WARN + - ERROR + example: INFO + localizedText: + description: Localized form of the message + type: object + required: + - locale + - message + properties: + locale: + description: Message locale + type: string + example: An error has occurred! + message: + description: Message text + type: string + example: Error has occurred! + key: + description: Key of the message + type: string + example: akey + parameters: + description: Message parameters for internationalization + type: array + items: + type: object + example: + - name: value + returns: + description: Return values from the task this TaskStatus represents + type: array + items: + description: Task return details + required: + - name + - attributeName + type: object + properties: + name: + description: Display name of the TaskReturnDetails + type: string + example: label + attributeName: + description: Attribute the TaskReturnDetails is for + type: string + example: identityCount + attributes: + description: Attributes of the task this TaskStatus represents + type: object + additionalProperties: true + example: + identityCount: 0 + progress: + description: Current progress of the task this TaskStatus represents + type: string + example: Started + percentComplete: + description: Current percentage completion of the task this TaskStatus represents + type: integer + example: 100 + '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. + security: + - UserContextAuth: + - 'idn:task-management:write' + /task-status/pending-tasks: + get: + tags: + - Task Management + summary: Retrieve a pending task list. + description: Retrieve a list of TaskStatus for pending tasks. + operationId: getPendingTasks + parameters: + - in: query + name: offset + description: |- + Offset into the full result set. Usually specified with *limit* to paginate through the results. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 0 + schema: + type: integer + format: int32 + minimum: 0 + default: 0 + - in: query + name: limit + description: |- + Max number of results to return. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 250 + schema: + type: integer + format: int32 + minimum: 0 + maximum: 250 + default: 250 + - in: query + name: count + description: |- + If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. + + Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. + + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: true + schema: + type: boolean + default: false + - name: sorters + in: query + description: sort criteria + required: false + style: form + explode: true + schema: + type: string + - name: filters + in: query + description: filter criteria + required: false + style: form + explode: true + schema: + type: string + responses: + '200': + description: Responds with a list of TaskStatus for pending tasks. + content: + application/json: + schema: + type: array + items: + description: Details and current status of a specific task + required: + - id + - type + - uniqueName + - description + - parentName + - attributes + - created + - modified + - launched + - launcher + - completed + - completionStatus + - messages + - progress + - percentComplete + - returns + type: object + properties: + id: + description: System-generated unique ID of the task this TaskStatus represents + type: string + example: id12345 + type: + description: Type of task this TaskStatus represents + type: string + enum: + - QUARTZ + - QPOC + - QUEUED_TASK + example: QUARTZ + uniqueName: + description: Name of the task this TaskStatus represents + type: string + example: Big Task + description: + description: Description of the task this TaskStatus represents + type: string + example: A Really Big Task + parentName: + description: Name of the parent of the task this TaskStatus represents + type: string + example: Parent Task + launcher: + description: Service to execute the task this TaskStatus represents + type: string + example: sweep + created: + description: Creation date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + modified: + description: Last modification date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + launched: + description: Launch date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + completed: + description: Completion date of the task this TaskStatus represents + type: string + format: date-time + example: '2020-07-11T21:23:15.000Z' + completionStatus: + description: Completion status of the task this TaskStatus represents + type: string + enum: + - Success + - Warning + - Error + - Terminated + - TempError + example: Success + messages: + description: Messages associated with the task this TaskStatus represents + type: array + items: + description: TaskStatus Message + required: + - key + - localizedText + - type + - parameters + type: object + properties: + type: + description: Type of the message + type: string + enum: + - INFO + - WARN + - ERROR + example: INFO + localizedText: + description: Localized form of the message + type: object + required: + - locale + - message + properties: + locale: + description: Message locale + type: string + example: An error has occurred! + message: + description: Message text + type: string + example: Error has occurred! + key: + description: Key of the message + type: string + example: akey + parameters: + description: Message parameters for internationalization + type: array + items: + type: object + example: + - name: value + returns: + description: Return values from the task this TaskStatus represents + type: array + items: + description: Task return details + required: + - name + - attributeName + type: object + properties: + name: + description: Display name of the TaskReturnDetails + type: string + example: label + attributeName: + description: Attribute the TaskReturnDetails is for + type: string + example: identityCount + attributes: + description: Attributes of the task this TaskStatus represents + type: object + additionalProperties: true + example: + identityCount: 0 + progress: + description: Current progress of the task this TaskStatus represents + type: string + example: Started + percentComplete: + description: Current percentage completion of the task this TaskStatus represents + type: integer + example: 100 + '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. + '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. + security: + - UserContextAuth: + - 'idn:task-management:read' + head: + tags: + - Task Management + summary: Retrieve headers only for pending task list. + description: Retrieve headers for a list of TaskStatus for pending tasks. + operationId: getPendingTaskHeaders + parameters: + - in: query + name: offset + description: |- + Offset into the full result set. Usually specified with *limit* to paginate through the results. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 0 + schema: + type: integer + format: int32 + minimum: 0 + default: 0 + - in: query + name: limit + description: |- + Max number of results to return. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 250 + schema: + type: integer + format: int32 + minimum: 0 + maximum: 250 + default: 250 + - in: query + name: count + description: |- + If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. + + Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. + + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: true + schema: + type: boolean + default: false + - name: sorters + in: query + description: sort criteria + required: false + style: form + explode: true + schema: + type: string + - name: filters + in: query + description: filter criteria + required: false + style: form + explode: true + schema: + type: string + responses: + '200': + description: Responds with headers for List of TaskStatus for pending tasks. + '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. + '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. + security: + - UserContextAuth: + - 'idn:task-management:read' /tagged-objects: get: operationId: listTaggedObjects diff --git a/postman/collections/sailpoint-api-beta.json b/postman/collections/sailpoint-api-beta.json index 14fdc80..f6e7718 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": "8cbb4d3d-a29f-4dd3-8126-0148803859d7", + "id": "428d23a7-901d-4b5b-83f0-3e94777c464e", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -107,7 +107,7 @@ }, "response": [ { - "id": "a3fc9441-4b38-468a-b3c4-97a07c9a833b", + "id": "31e591bf-774a-4d1e-9dbc-0235afd4b77d", "name": "List of Access Profiles", "originalRequest": { "url": { @@ -218,12 +218,12 @@ "value": "application/json" } ], - "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\": \"APP_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\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"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\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\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 }\n },\n {\n \"owner\": {\n \"type\": \"RULE\",\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\": \"OWNER\",\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\": \"CONTAINS\",\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\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\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 }\n }\n]", + "body": "[\n {\n \"owner\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n },\n {\n \"owner\": {\n \"type\": \"SOURCE\",\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\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\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\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c009e1b7-c1cc-4d1c-9417-11eb900b0fe5", + "id": "32aaa791-faed-41af-b31f-08b85bde06bb", "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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f23b8df4-dda6-4831-94e4-b7cfcde35cca", + "id": "f34b3322-8317-4ddc-a96d-d4ff8de11888", "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": "15ef4acf-c00b-40a4-9a7f-622794b5774c", + "id": "9f1b2579-e684-4cfa-8de4-0f38c10eac95", "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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85b47c4f-a4e3-4f3e-9c47-890b714bba9c", + "id": "088baad3-6c9e-441b-95a8-47a7d51ce629", "name": "Too Many Requests - Returned in response to too many requests in 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": "8f8e7e84-f180-4fcc-94e5-2d9bc227b517", + "id": "ebeddca6-4f24-450a-b3f4-9145d1055d5b", "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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -809,7 +809,7 @@ } }, { - "id": "fd3e5743-4014-4465-a89d-3223e05472f1", + "id": "b1cfee63-d971-4c33-829b-92824021617d", "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\": \"TAG_CATEGORY\",\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\": \"MANAGER\",\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\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "0d993153-48c2-48da-9d4e-f630075d6eed", + "id": "128e2845-cdc6-4560-a2dd-3661532c47aa", "name": "Access Profile created", "originalRequest": { "url": { @@ -885,7 +885,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"TAG_CATEGORY\",\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\": \"MANAGER\",\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\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\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\": \"TAG_CATEGORY\",\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\": \"MANAGER\",\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\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "body": "{\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7436615b-ba03-42f8-b57c-133a271fd1f3", + "id": "d7b631d0-06d0-4c7f-8575-5caff69a74bc", "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\": \"TAG_CATEGORY\",\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\": \"MANAGER\",\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\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3cc342d0-b868-4853-b895-8611cd2a8581", + "id": "4f200f44-0fd9-46e4-95c4-c2de36ed4d38", "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\": \"TAG_CATEGORY\",\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\": \"MANAGER\",\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\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1019,7 +1019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e294702-1578-4cad-b985-7280370edcb9", + "id": "e2140f61-d9da-43d7-94ce-16304d1626ab", "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\": \"TAG_CATEGORY\",\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\": \"MANAGER\",\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\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1d9e820-ea04-49d0-af8a-4afaa87feb4f", + "id": "b0abc725-8e58-40cf-9aae-074076598a11", "name": "Too Many Requests - Returned in response to too many requests in 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\": \"TAG_CATEGORY\",\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\": \"MANAGER\",\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\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -1131,7 +1131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efab097c-c2e9-4e07-8fc6-f91f26d3998d", + "id": "3e7e4e80-6ca4-4b68-8f92-7144ef5798e2", "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\": \"TAG_CATEGORY\",\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\": \"MANAGER\",\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\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "raw": "{\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -1193,7 +1193,7 @@ } }, { - "id": "09e95a54-0f1a-4770-b014-fdee6b595005", + "id": "0ac3e41b-80ae-4bfb-8831-892f70271059", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1230,7 +1230,7 @@ }, "response": [ { - "id": "2c60a88c-7b19-435e-82b0-6d2c5aa8d2f1", + "id": "ae840ce9-b200-43db-aa10-a80f777a02f7", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1269,12 +1269,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"TAG_CATEGORY\",\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\": \"MANAGER\",\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\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "body": "{\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e471dcf1-e2fb-4c02-ba76-0a9021dc76cb", + "id": "44861d72-a692-4fea-a66a-74da0e0e94ee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1313,12 +1313,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f4d29732-8258-4b7b-a693-9f91138c9b7b", + "id": "838f4473-a75b-4eef-988c-e1ade1fe5150", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1362,7 +1362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b77043a-8e48-4a41-8c90-009eb298574b", + "id": "8ccc0977-732b-456e-8710-f3dbcfe77ae1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1401,12 +1401,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5f2b798-3bae-42b0-b4ad-7183749b99f3", + "id": "e66e95dd-8c50-42d4-88f7-10af9eed95f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1450,7 +1450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1919ab64-828e-455f-8d44-e5f465403f84", + "id": "d8b222ba-3da0-43a5-a28f-cff400dcbf75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1489,7 +1489,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -1500,7 +1500,7 @@ } }, { - "id": "2f257c45-cbfe-4fc8-9b09-ef5512154b9d", + "id": "be7b72c9-3444-437d-9ed4-7319f3e10323", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1539,7 +1539,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1550,7 +1550,7 @@ }, "response": [ { - "id": "309f18a7-319c-4c58-ab22-c80aff3a4246", + "id": "78d161de-545e-4443-838f-641e697bf30c", "name": "Responds with the Access Profile as updated.", "originalRequest": { "url": { @@ -1585,7 +1585,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1602,12 +1602,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"TAG_CATEGORY\",\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\": \"MANAGER\",\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\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", + "body": "{\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": {\n \"commentsRequired\": false,\n \"denialCommentsRequired\": false,\n \"approvalSchemes\": [\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"segments\": [\n \"\",\n \"\"\n ],\n \"provisioningCriteria\": {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"CONTAINS\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"HAS\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n },\n {\n \"operation\": \"AND\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"children\": [\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"attribute\": \"\",\n \"value\": \"\"\n }\n ]\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7ee6ee9b-a1e7-464c-9210-ab9bcd434cdc", + "id": "517f834e-f9c6-41ff-80ba-8db20532af5c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1642,7 +1642,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1659,12 +1659,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2ff0c23-62d8-45cd-84bf-6e7bf3409450", + "id": "68770e43-5bb5-456e-8565-0c9579cb32d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1699,7 +1699,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1721,7 +1721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca8ff267-0418-4a61-8716-dfc6aece4362", + "id": "28acbb40-4688-490b-9d2c-cd28a8314e91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1756,7 +1756,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1773,12 +1773,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "376462c0-54a4-4103-ba8f-d00b4d88fa13", + "id": "5ab53779-b19a-43e9-b8ce-d384731adda9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1813,7 +1813,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1835,7 +1835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ae9223b-dd68-49aa-9461-b46c5f8b88dc", + "id": "245af4fa-fe1b-4321-bf5d-dca4c9531268", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1870,7 +1870,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -1887,7 +1887,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -1898,7 +1898,7 @@ } }, { - "id": "cd7b00f4-162a-4b11-8c47-79b9fc0c7fca", + "id": "246ed0f0-d5d2-4a51-9a79-df44a03e341e", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -1935,7 +1935,7 @@ }, "response": [ { - "id": "9405bc3e-b5c6-4005-aad9-7fc21fe3ea5c", + "id": "6e28c1da-66b5-47a0-980d-dc0faebd17ed", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -1969,7 +1969,7 @@ "_postman_previewlanguage": "text" }, { - "id": "456174c1-25b0-4e2e-a5a3-55b420dab608", + "id": "675606e7-7795-4d9d-afd9-8f19db459245", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -2008,12 +2008,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5a56ded-1790-4ea3-bcca-4cfff76f402e", + "id": "c33a4347-fbb0-4b24-852a-0e668229dd1a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2057,7 +2057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4cf7588-3803-436f-a751-6b104af2f2bd", + "id": "546cdd70-f374-45b3-ba2c-e4b34b149699", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2096,12 +2096,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35375a92-b901-4ce9-81f5-4382e01afc83", + "id": "c9f45f54-0d47-4a4b-9006-d956bf8ade24", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2145,7 +2145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9689f542-34c8-4702-b4e8-be11517a9cad", + "id": "7e296e15-4bbe-4f45-82b1-60cbccb57620", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2184,7 +2184,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -2195,7 +2195,7 @@ } }, { - "id": "8e846230-5011-4cff-a023-79c5c5a1e03d", + "id": "f48bdc6f-3176-4f9d-97c1-f263b59c2731", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -2238,7 +2238,7 @@ }, "response": [ { - "id": "c636c348-a3f5-4ee4-9284-1679e16f06b0", + "id": "fce56265-35e6-4cb6-93b1-4ec075f1e379", "name": "Returned only if **bestEffortOnly** is **false**, and one or more Access Profiles are in use.", "originalRequest": { "url": { @@ -2290,12 +2290,12 @@ "value": "application/json" } ], - "body": "{\n \"taskId\": \"\",\n \"pending\": [\n \"\",\n \"\"\n ],\n \"inUse\": [\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\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\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "601cacc2-87da-4ced-aba4-4baeda3411e7", + "id": "6f050612-c926-4eeb-9516-d40377348e6d", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -2347,12 +2347,12 @@ "value": "application/json" } ], - "body": "{\n \"taskId\": \"\",\n \"pending\": [\n \"\",\n \"\"\n ],\n \"inUse\": [\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\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\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n {\n \"accessProfileId\": \"\",\n \"usedBy\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4176245c-e802-4062-9a5a-f62c8a0dfd91", + "id": "b7327fc7-6195-4104-829f-6dd18953b8f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2404,12 +2404,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "25a1f267-e978-497d-8ff5-f6f218490801", + "id": "c5a0d1f0-b8df-40a9-b4ed-e194d87f0e52", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2466,7 +2466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "befd9735-2129-41df-a755-9ab70a0b5c98", + "id": "0a6c7190-9521-4e89-8165-08d24c1ce50a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2518,12 +2518,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f92d8f92-64d5-4fb7-8953-01f4c6a5a384", + "id": "20ed3b6c-cf04-48a3-8165-3a0a7cdf5687", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2580,7 +2580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6f8475d-8ef7-450a-a6f7-cdfea903ec9b", + "id": "b9e41261-947b-4723-97e2-813490094e44", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2632,7 +2632,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -2643,7 +2643,7 @@ } }, { - "id": "293f1523-748e-4028-ae87-8876d3257162", + "id": "0947ed0b-bfdd-4795-8c5e-a2479a4517c9", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -2727,7 +2727,7 @@ }, "response": [ { - "id": "0d66f1af-4c11-4f3b-8e4b-6237dd102e4e", + "id": "4a664870-1374-4e89-b2c8-389ff209f05c", "name": "List of Entitlements", "originalRequest": { "url": { @@ -2813,12 +2813,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 \"Lorem_72f\": 92414801.05428982,\n \"cillume7\": -41810756,\n \"eiusmod_6\": -92210243.43732154\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 \"cupidatat_2\": true\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 \"occaecat_9\": -34200185\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 \"Ut_f\": false,\n \"eae\": 42539381.04411\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": "f4453f1c-2217-44a3-b8f4-d26de3ca0c18", + "id": "2a727f04-9632-4239-a125-9cf37bf927c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2904,12 +2904,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a6391991-e25a-4a40-ada8-eba830e2fbd9", + "id": "6c8204be-1589-4008-aaad-2166d076e837", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -3000,7 +3000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a7d884c-4e61-4721-8ad2-309433c5b0e6", + "id": "d370287e-bca1-4f96-a08d-72f877b9b836", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3086,12 +3086,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b89ebf01-4cc5-4898-bd81-e911ff978a31", + "id": "88a91b6b-ccd5-4929-988a-36c7b6283b74", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3182,7 +3182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f590f2e-fa09-4383-969e-fb0a6a09433f", + "id": "92d52fa3-0634-4b7c-8cae-31f569a60557", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3268,7 +3268,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3285,7 +3285,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": "001d68e8-382f-488b-ad87-0365b8f89da9", + "id": "6824c5ac-f4c8-40cb-8cfa-8cfc965ee03b", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -3370,7 +3370,7 @@ }, "response": [ { - "id": "4adb2e02-ffcf-4442-8290-73391e882b0e", + "id": "4f19cffe-9056-4d63-bb12-5450c8425319", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -3464,12 +3464,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"requester\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"LIFECYCLE_STATE\",\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\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"CAMPAIGN\",\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\": \"SELF_REVIEW_DELEGATION\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"actionInProcess\": \"REJECTED\",\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 \"Lorem_2\": \"\",\n \"laboris_8\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_REQUEST\",\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\": \"ACCESS_REQUEST_APPROVAL\",\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\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ENTITLEMENT\",\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\": \"REVOKE_ACCESS\",\n \"requester\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"ROLE\",\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\": \"ENTITLEMENT\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"TASK_RESULT\",\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\": \"CONNECTOR_SCHEMA\",\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 \"actionInProcess\": \"FORWARDED\",\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 \"velit_7\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_PROFILE\",\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\": \"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 \"policy\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\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]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"requester\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"REPORT_RESULT\",\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\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"TASK_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\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"\",\n \"newApproverName\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"forwarderName\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"actionInProcess\": \"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 \"non9\": \"\",\n \"dolor_88\": \"\",\n \"est_00\": \"\",\n \"non_21c\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"TAG_CATEGORY\",\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\": \"APPLICATION\",\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\": \"SOD_VIOLATION\",\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\": \"LIFECYCLE_STATE\",\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\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"RULE\",\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\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"APPLICATION\",\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\": \"MANUAL_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"actionInProcess\": \"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 \"ex_f3\": \"\",\n \"veniam_e\": \"\",\n \"eu465\": \"\",\n \"sit_2\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOURCE\",\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\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"PASSWORD_POLICY\",\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\": \"APPLICATION\",\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\": \"ACCOUNT\",\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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "337d7103-6b18-44e8-9665-dc16efa442d1", + "id": "3a868c24-97c3-4899-8724-063b0a8b558c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -3568,7 +3568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d302dbd-8702-4eaf-b73e-6184f12a2497", + "id": "3d9f3939-f150-4b6f-a07c-b780b9715f63", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3662,12 +3662,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "650dcf10-0ed4-430c-ab1e-d4b479eeed77", + "id": "93c1856a-a1b3-4ba6-8d5c-69d5663c588f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3766,7 +3766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6da9b4e6-0635-42d1-b972-0b8c04bf389b", + "id": "5a6527bd-b188-462d-9243-5aeb329f5fa8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3860,7 +3860,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3871,7 +3871,7 @@ } }, { - "id": "38e2fc7a-1c68-44b3-9c71-ade34da292c7", + "id": "55b6c759-1207-4898-abb3-733e53138294", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -3956,7 +3956,7 @@ }, "response": [ { - "id": "25046b03-1ef8-4615-b6e6-cf13ec164d9c", + "id": "db952b05-fee0-483b-9c9c-5b67f0d095c8", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -4050,12 +4050,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"requester\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\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\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ENTITLEMENT\",\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\": \"MANUAL_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"state\": \"REJECTED\",\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 \"deseruntb4\": \"\",\n \"reprehenderit9\": \"\",\n \"et59\": \"\",\n \"Excepteur_a5\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"CAMPAIGN\",\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\": \"SOURCE\",\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\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\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\": \"WORKGROUP\",\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\": \"SOD_POLICY\",\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\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"CAMPAIGN_FILTER\",\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 \"reviewerComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"SOD_VIOLATION\",\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\": \"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 \"deserunt_6a\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"WORKGROUP\",\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\": \"IDENTITY_PROFILE\",\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\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_PROFILE\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"SOD_VIOLATION\",\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\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"reviewerComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"SELF_REVIEW_DELEGATION\"\n }\n ],\n \"commentRequiredWhenRejected\": \"\",\n \"state\": \"REJECTED\",\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 \"quis_f0\": \"\"\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\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"IDENTITY\",\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\": \"CAMPAIGN_FILTER\",\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\": \"ACCESS_REQUEST_APPROVAL\",\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\": \"ACCESS_REQUEST_APPROVAL\",\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 {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"requestCreated\": \"\",\n \"requestType\": \"REVOKE_ACCESS\",\n \"requester\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"owner\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"reviewerComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"REPORT_RESULT\",\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\": \"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 \"do_11d\": \"\",\n \"nisi_53\": \"\"\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\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"GOVERNANCE_GROUP\",\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\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"APPLICATION\",\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\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT_ACTIVITY\",\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": "cec321f1-14e4-472c-8332-3ac84c66974c", + "id": "c090dedf-feef-4432-931d-f79ea7d72d88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4154,7 +4154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13c504e1-08fe-4284-93e8-8e48d03d414c", + "id": "c8aa6659-a31f-4ec2-97ba-651b810739e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4248,12 +4248,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "048313f7-3210-4383-a520-ee1d29a1e257", + "id": "d29a7153-5919-46e8-a799-6aba1b3f43cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4352,7 +4352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc42fbae-d50a-4ccf-9367-512a828c2fe3", + "id": "e0477dbd-aaf9-4694-9e16-2f4d6cc88b66", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4446,7 +4446,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4457,7 +4457,7 @@ } }, { - "id": "e0423933-3fda-4a41-a812-fe34267ecb43", + "id": "d9fd31de-b482-4812-867e-6067f951de97", "name": "Approves an access request approval.", "request": { "name": "Approves an access request approval.", @@ -4508,7 +4508,7 @@ }, "response": [ { - "id": "9a40279b-8666-4b84-a474-9673fa17aa14", + "id": "982c8d09-d6aa-440f-a5af-4ad0f81a3279", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -4566,7 +4566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fa513ca-2c82-4837-bbd8-19f161541fef", + "id": "14d78fe0-6720-4c9d-ae1a-39f21bbdb7b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4624,7 +4624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f22e2bd-05db-4491-8c94-1e48dbc33013", + "id": "af4e787a-18be-4b69-9a3d-af5f3b2c3be6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4677,12 +4677,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8da49e31-e31d-4274-9731-b52e4f9d8133", + "id": "09a7efd6-4d7a-41b8-8089-a16a462fcdee", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -4735,12 +4735,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7d178904-48ef-484d-94c1-ebdfb7c35e22", + "id": "7cc7ab2f-9631-4a60-b395-c2f4e90bf75c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4798,7 +4798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "877e238e-262a-44a8-b4df-a248f2d52daa", + "id": "d4e0b77e-6540-4eab-a1cd-018bb00cda8d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4851,7 +4851,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4862,7 +4862,7 @@ } }, { - "id": "98f23c55-83f7-428e-b82b-4ea267e2e7be", + "id": "a482ceb4-4ec1-463f-b743-e1fbb598cc20", "name": "Rejects an access request approval.", "request": { "name": "Rejects an access request approval.", @@ -4913,7 +4913,7 @@ }, "response": [ { - "id": "3b08fba7-2f85-4834-a6be-4630824be1cf", + "id": "54df5fad-4489-4be4-8b3d-9fb7271e5ca8", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -4971,7 +4971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f702d1f-c0ac-4b84-91c9-d815b75d342b", + "id": "046f8be2-48bf-4b7c-8f8b-69e7ba2c4e54", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5024,12 +5024,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2dad2916-f80c-4114-a290-953c103a557a", + "id": "876d5d6c-4695-4bf5-a28c-eafb148396d8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5087,7 +5087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9c7f541-2ef5-43f5-8ddf-2df35d793a4d", + "id": "a50938e8-e26b-4a18-a9d3-d0149aaf1235", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5140,12 +5140,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc01fe1d-42af-4ff9-b67e-162b5a442afd", + "id": "c8b1eaf2-b742-4bfc-891d-e36eceaf8770", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -5198,12 +5198,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "410262aa-8ae8-41d9-b731-6f8c046e06f3", + "id": "238793c3-d669-4327-ac08-428e6088a2f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5261,7 +5261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65574441-983c-41f9-8413-7dc848b8dc9b", + "id": "079ad208-181a-486b-93d5-1b00c3473350", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5314,7 +5314,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -5325,7 +5325,7 @@ } }, { - "id": "9e2bacf4-d883-43d2-b041-babeeb46db6d", + "id": "20f59974-1d62-43d1-a042-a7e0ab4954d0", "name": "Forwards an access request approval to a new owner.", "request": { "name": "Forwards an access request approval to a new owner.", @@ -5376,7 +5376,7 @@ }, "response": [ { - "id": "0e9b5ed8-1a25-419d-b02c-83155f5afcd5", + "id": "b1bd02f5-d387-42e0-a209-ac2f1d60a45e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5434,7 +5434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3e9069e-ccaf-4663-bbc1-b2d97d98dca6", + "id": "fe8345e8-17ce-449f-84e7-1f8f42d47a52", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5487,12 +5487,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e6e7d85-25f3-4daa-807d-e62344730317", + "id": "510341c3-edff-4bbd-824e-4a9f1edc6e9a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5550,7 +5550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7c74e63-92f0-4da1-b9de-e91d7b46188f", + "id": "bf39a1b0-4c61-40fd-8be1-69048986f859", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5603,12 +5603,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d520915-e224-45c3-ad73-cc539a68d6f3", + "id": "53d8edd4-edd1-4dbc-9bac-76125b9621c0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -5661,12 +5661,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d27cfea6-78a3-47c4-932b-9254e93c7302", + "id": "449eca30-402f-48e6-bbfe-fdc3fa2a0aa1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5724,7 +5724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d3eee1-fffa-49ce-a2ec-051dd4b39618", + "id": "24780139-8fd4-4084-9502-b1058bb3ba5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5777,7 +5777,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -5788,7 +5788,7 @@ } }, { - "id": "2ebcdf63-d559-44e2-ac80-6e3a5a402e6a", + "id": "bb38e839-5847-4246-ab6f-d62b0f71be17", "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", @@ -5837,7 +5837,7 @@ }, "response": [ { - "id": "22164944-eed4-4273-b620-c3f49798e67b", + "id": "327a82c6-b151-4f8c-91f3-1a24cc4333ca", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -5900,7 +5900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "289213a9-f282-48bf-ad48-e1b2bd8d45ba", + "id": "7e82e394-de56-438b-907e-cbf6e0924a1a", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -5958,12 +5958,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d412724e-e771-44fc-b12a-82a146bc5c1c", + "id": "54b97dc2-4ab9-4b2a-9b33-57409930def4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6026,7 +6026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59effcb1-e653-4bbe-b02b-26e0f754ee1d", + "id": "a0f38d2b-8e9c-4b6e-8a5e-cd29f0142d47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6084,12 +6084,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9cf1f330-1478-48d6-9e9a-f8dd204e7f1c", + "id": "b4c671ed-926c-49c8-9bfd-f0b0c6210530", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6152,7 +6152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5ea26ba-6e7b-49a3-9121-4a8011f5bfc3", + "id": "9d855f94-97c3-4126-845a-e1ab4f32a335", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6210,7 +6210,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -6227,7 +6227,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": "7457dd16-d948-4fb4-a2b5-1e5d7f3ef13a", + "id": "5e373dc8-e6bf-4839-b754-6b5978759386", "name": "Submit an Access Request", "request": { "name": "Submit an Access Request", @@ -6258,7 +6258,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"ut_9f0\": \"\",\n \"qui_111\": \"\",\n \"amet_b_2\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Excepteur_c\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"nulla_1\": \"\",\n \"aliquip1\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"elit765\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"culpa2dd\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"commodo_74\": \"\",\n \"ut7\": \"\",\n \"Ut_549\": \"\",\n \"officia1c8\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6269,7 +6269,7 @@ }, "response": [ { - "id": "3c7e868c-1270-4cf6-9af3-2a9a387812df", + "id": "ee556612-cb71-4d50-882f-af90e564331d", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6303,7 +6303,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"ut_9f0\": \"\",\n \"qui_111\": \"\",\n \"amet_b_2\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Excepteur_c\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"nulla_1\": \"\",\n \"aliquip1\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"elit765\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"culpa2dd\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"commodo_74\": \"\",\n \"ut7\": \"\",\n \"Ut_549\": \"\",\n \"officia1c8\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6325,7 +6325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "155cc0d5-0622-4b9f-9521-517d60f2483f", + "id": "5cd606b1-5f66-4d1f-8ea6-072579f6c85a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6359,7 +6359,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"ut_9f0\": \"\",\n \"qui_111\": \"\",\n \"amet_b_2\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Excepteur_c\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"nulla_1\": \"\",\n \"aliquip1\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"elit765\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"culpa2dd\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"commodo_74\": \"\",\n \"ut7\": \"\",\n \"Ut_549\": \"\",\n \"officia1c8\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6376,12 +6376,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f528a741-602e-40d7-80e0-4dd7bcab7e57", + "id": "f3c6ae4b-f2fd-4bfa-9942-b39ba4e65017", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6415,7 +6415,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"ut_9f0\": \"\",\n \"qui_111\": \"\",\n \"amet_b_2\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Excepteur_c\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"nulla_1\": \"\",\n \"aliquip1\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"elit765\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"culpa2dd\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"commodo_74\": \"\",\n \"ut7\": \"\",\n \"Ut_549\": \"\",\n \"officia1c8\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6437,7 +6437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08be95da-ee13-4020-8958-ac0c3e067b80", + "id": "8d9cb974-1cc9-48ed-bbf9-7d4e56e00d06", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6471,7 +6471,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"ut_9f0\": \"\",\n \"qui_111\": \"\",\n \"amet_b_2\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Excepteur_c\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"nulla_1\": \"\",\n \"aliquip1\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"elit765\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"culpa2dd\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"commodo_74\": \"\",\n \"ut7\": \"\",\n \"Ut_549\": \"\",\n \"officia1c8\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6488,12 +6488,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7174fdea-c516-4682-bf25-758ec2d7be1a", + "id": "3c5446cd-fe03-4b54-92cf-58302deeeb66", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6527,7 +6527,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"ut_9f0\": \"\",\n \"qui_111\": \"\",\n \"amet_b_2\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Excepteur_c\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"nulla_1\": \"\",\n \"aliquip1\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"elit765\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"culpa2dd\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"commodo_74\": \"\",\n \"ut7\": \"\",\n \"Ut_549\": \"\",\n \"officia1c8\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6549,7 +6549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de96d641-3eeb-4bc0-8549-29f983195191", + "id": "80fdb494-04b0-4ae2-bfaf-7a456e1a0f2d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6583,7 +6583,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"ut_9f0\": \"\",\n \"qui_111\": \"\",\n \"amet_b_2\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"Excepteur_c\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"nulla_1\": \"\",\n \"aliquip1\": \"\"\n }\n}", + "raw": "{\n \"requestedFor\": [\n \"\",\n \"\"\n ],\n \"requestedItems\": [\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"elit765\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"type\": \"ENTITLEMENT\",\n \"comment\": \"\",\n \"clientMetadata\": {\n \"culpa2dd\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"requestType\": \"REVOKE_ACCESS\",\n \"clientMetadata\": {\n \"commodo_74\": \"\",\n \"ut7\": \"\",\n \"Ut_549\": \"\",\n \"officia1c8\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6600,7 +6600,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -6611,7 +6611,7 @@ } }, { - "id": "19eb7881-f21d-47f0-b165-27bf63168bea", + "id": "60295cba-759e-44fd-b8b3-18ff8bea90f5", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -6654,7 +6654,7 @@ }, "response": [ { - "id": "a7d3c194-44a5-4cdc-85a3-b53ca587a2ff", + "id": "202a5613-afd8-401f-bdc2-d1436107e9fb", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6711,7 +6711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95fadec7-0ba4-4cbc-8146-01f7c37d0d06", + "id": "4a0f1136-7462-4a99-9a1f-284bfc945ec9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6763,12 +6763,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64dd8793-1b45-4afb-b572-8f0dd2fc1715", + "id": "4dbd2126-32ea-456f-9555-442067d915fc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6825,7 +6825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f039651e-ef1b-4922-bcaa-f0319de2a291", + "id": "33b085ad-8cc6-495d-ae40-12222b6a1c1e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6877,12 +6877,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39ca4a5d-f13b-4731-b76d-9b677ac91fc9", + "id": "16dccae3-7429-483d-a1ac-cbbc0ee85928", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -6934,12 +6934,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7603ffce-03ad-46fc-b0ca-b0e09cd3dcd3", + "id": "89c71714-10f4-461b-9433-19b1e9d33173", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6996,7 +6996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e86d4d19-944a-4274-b273-4eee51432dc8", + "id": "031ac396-afc3-4827-a5b5-7be41a9953c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7048,7 +7048,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -7059,7 +7059,7 @@ } }, { - "id": "fcf3c76a-d26f-4cce-9e74-fe22a2e7dc86", + "id": "96cc4b90-f79e-4c61-9827-5e0c919fed85", "name": "Close Access Request", "request": { "name": "Close Access Request", @@ -7102,7 +7102,7 @@ }, "response": [ { - "id": "d55794a9-800f-48c6-aa6d-9330d32ecc91", + "id": "63b57575-9f46-4064-a5b8-961de7694791", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7159,7 +7159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84adf387-d735-45fb-b998-6b26ce6d4e65", + "id": "73e1cd41-57e2-4f36-b219-22cdbbc5662e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7211,12 +7211,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d71f38e-1a21-47f8-9751-a86a002e80b8", + "id": "1d300dd7-af15-41c0-8981-e2cd3814aac5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7273,7 +7273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fa47ed0-93d3-46f0-bc6d-4a67b77bdb67", + "id": "5857cef8-8432-4a6b-b465-5d835cc3af6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7325,12 +7325,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4aa143e6-c0d8-452e-95fa-54f668d88181", + "id": "d7a62536-9d8c-41c0-a820-8941d1f0568a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7387,7 +7387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93c5a242-1d82-40a5-a5cd-ceef16222b9a", + "id": "41e3f399-3b07-45b2-8cf4-6efa535894f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7439,7 +7439,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -7450,7 +7450,7 @@ } }, { - "id": "ded43743-bfe0-4004-aa7a-d0c742d11a6b", + "id": "e5a6ace0-6a44-4bd6-9a8b-e4c2f9c955a3", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -7479,7 +7479,7 @@ }, "response": [ { - "id": "53a42748-1ee6-42d4-b918-0f9ecc787dcc", + "id": "0466674b-eda2-4ae8-b307-f68319c9269a", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -7522,7 +7522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6749a2f9-78df-4bfa-b701-330bea99fc81", + "id": "53d793e1-3fe8-4975-98e0-9b15cade131b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7560,12 +7560,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1fad64f8-b364-45de-8606-4ef816a9e8ee", + "id": "355b5fdb-2dc9-4c60-8cf1-bb4086d3c591", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7608,7 +7608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b005060-6174-4241-9dd8-4853428c398d", + "id": "04d2361b-63a2-4446-9a09-9a55c687a79b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7646,12 +7646,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b88494e8-7300-4d2d-8dfc-26126dc0a441", + "id": "240cfdf9-612d-4e33-ad3a-b50c09e598a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7694,7 +7694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "993df86e-7d7c-41df-b004-abab9c9629c9", + "id": "588d313c-82ea-4266-a8d1-654f6ab16b6e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7732,7 +7732,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -7743,7 +7743,7 @@ } }, { - "id": "9ad68d61-f4af-4da1-98b1-6b781f9bdaea", + "id": "30f47cbe-bf1a-42e0-9000-163f9df936ba", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -7785,7 +7785,7 @@ }, "response": [ { - "id": "1a9dc74a-4d20-4d66-8010-0aacdd1d76e7", + "id": "611ec066-342a-413a-a706-c175f8f36e2c", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -7841,7 +7841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e30b100d-0f62-494e-9d33-435bd7b95a7f", + "id": "a36d5fe0-f45a-4078-995d-e13425cc2ac2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7892,12 +7892,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9347b160-8f43-44b9-af5e-6259ba3f8acd", + "id": "65f39468-d91e-41e8-ab0c-8300312c6ee0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7953,7 +7953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5474533e-90d9-4566-848b-34508f6dfb09", + "id": "9b84a580-ef15-43c0-a8da-a04e34a39807", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8004,12 +8004,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7bd90c87-92cc-4580-9de3-8dc900d53369", + "id": "734bce75-d1ce-4b4f-814e-070bdb9b2c83", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8065,7 +8065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ea8e7d6-e0e4-45f9-bbdd-6dcdb091fcb9", + "id": "52f3a851-a14c-4365-91f3-f62eda3c7caa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8116,7 +8116,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8127,7 +8127,7 @@ } }, { - "id": "58a862b8-67b8-4719-bbba-9a2b8905f2e8", + "id": "25592090-eb2b-4a19-90d6-1c2833ed5c23", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -8229,7 +8229,7 @@ }, "response": [ { - "id": "1f22e9cf-e986-4b84-907a-e1b02fc24c5c", + "id": "ae117d9e-b2c0-4fc0-8214-9aef4c22807f", "name": "List of requested item status.", "originalRequest": { "url": { @@ -8340,12 +8340,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"type\": \"ROLE\",\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\": \"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\": \"REQUEST_COMPLETED\",\n \"approvalDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"PENDING\",\n \"scheme\": \"SOURCE_OWNER\",\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\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"ARCHIVED\",\n \"scheme\": \"SOURCE_OWNER\",\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 \"manualWorkItemDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"CANCELLED\",\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\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY_REQUEST\",\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\": \"MANUAL_REASSIGNMENT\"\n }\n ]\n }\n ],\n \"accountActivityItemId\": \"\",\n \"requestType\": \"GRANT_ACCESS\",\n \"modified\": \"\",\n \"created\": \"\",\n \"requester\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"CLUSTER\",\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 \"adipisicingb\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"REPORT_RESULT\",\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\": \"ENTITLEMENT\",\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\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\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\": \"LIFECYCLE_STATE\",\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\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\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\": \"CANCELLED\",\n \"result\": \"FAILED\",\n \"phaseReference\": \"\"\n },\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"COMPLETED\",\n \"result\": \"FAILED\",\n \"phaseReference\": \"\"\n }\n ],\n \"description\": \"\",\n \"removeDate\": \"\",\n \"cancelable\": \"\",\n \"accessRequestId\": \"\",\n \"clientMetadata\": {\n \"culpa83a\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"type\": \"ROLE\",\n \"cancelledRequestDetails\": {\n \"comment\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n ],\n \"state\": \"NOT_ALL_ITEMS_PROVISIONED\",\n \"approvalDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"APPROVED\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"ARCHIVED\",\n \"scheme\": \"ACCESS_PROFILE_OWNER\",\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 \"manualWorkItemDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"IDENTITY_REQUEST\",\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\": \"AUTO_ESCALATION\"\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\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"CANCELLED\",\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 \"accountActivityItemId\": \"\",\n \"requestType\": \"GRANT_ACCESS\",\n \"modified\": \"\",\n \"created\": \"\",\n \"requester\": {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"labore_0\": \"\",\n \"proident_274\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ENTITLEMENT\",\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\": \"IDENTITY_REQUEST\",\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\": \"ENTITLEMENT\",\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\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOD_POLICY\",\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\": \"FAILED\",\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 \"dolore99\": \"\",\n \"amet_4\": \"\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"cancelledRequestDetails\": {\n \"comment\": \"\",\n \"owner\": {\n \"type\": \"ENTITLEMENT\",\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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n ],\n \"state\": \"REJECTED\",\n \"approvalDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"CANCELLED\",\n \"scheme\": \"APP_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\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"PENDING\",\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 \"manualWorkItemDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"TAG\",\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\": \"AUTOMATIC_REASSIGNMENT\"\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\": \"CAMPAIGN\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"LIFECYCLE_STATE\",\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\": \"MANUAL_REASSIGNMENT\"\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\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"CERTIFICATION\",\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 \"officia_a\": \"\",\n \"aliquip_2\": \"\",\n \"do_e\": \"\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"TASK_RESULT\",\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\": \"CLUSTER\",\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\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"IDENTITY_PROFILE\",\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\": \"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\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\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\": \"FAILED\",\n \"phaseReference\": \"\"\n },\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"EXECUTING\",\n \"result\": \"FAILED\",\n \"phaseReference\": \"\"\n }\n ],\n \"description\": \"\",\n \"removeDate\": \"\",\n \"cancelable\": \"\",\n \"accessRequestId\": \"\",\n \"clientMetadata\": {\n \"culpa_fb\": \"\",\n \"culpae29\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"type\": \"ACCESS_PROFILE\",\n \"cancelledRequestDetails\": {\n \"comment\": \"\",\n \"owner\": {\n \"type\": \"RULE\",\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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n ],\n \"state\": \"NOT_ALL_ITEMS_PROVISIONED\",\n \"approvalDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"CANCELLED\",\n \"scheme\": \"ROLE_OWNER\",\n \"errorMessages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\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\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"reviewedBy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\",\n \"status\": \"PENDING\",\n \"scheme\": \"ROLE_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 \"manualWorkItemDetails\": [\n {\n \"forwarded\": \"\",\n \"originalOwner\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"currentOwner\": {\n \"type\": \"PASSWORD_POLICY\",\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\": \"AUTO_ESCALATION\"\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\": \"TAG_CATEGORY\",\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\": \"MANUAL_REASSIGNMENT\"\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\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requestedFor\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"requesterComment\": {\n \"comment\": \"\",\n \"author\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n },\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n \"clientMetadata\": {\n \"cillum_0a\": \"\",\n \"quis4\": \"\",\n \"occaecat_b6\": \"\",\n \"consecteturb1\": \"\"\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\": \"APPLICATION\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": \"\",\n \"type\": \"LIFECYCLE_STATE\",\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\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"existing\": \"\",\n \"type\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"TAG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"CONNECTOR_SCHEMA\",\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\": \"CANCELLED\",\n \"result\": \"FAILED\",\n \"phaseReference\": \"\"\n },\n {\n \"started\": \"\",\n \"finished\": \"\",\n \"name\": \"\",\n \"state\": \"PENDING\",\n \"result\": \"FAILED\",\n \"phaseReference\": \"\"\n }\n ],\n \"description\": \"\",\n \"removeDate\": \"\",\n \"cancelable\": \"\",\n \"accessRequestId\": \"\",\n \"clientMetadata\": {\n \"aliqua6\": \"\",\n \"laborum_9\": \"\",\n \"aliqua_5\": \"\",\n \"Ut7\": \"\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "747dcdf8-ae62-4d1f-84a6-93858f623125", + "id": "c197baaf-9a55-4042-81f2-bb3614cde392", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8456,12 +8456,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2857639b-7bcc-4ec4-bcab-1fda720d43a7", + "id": "a5d3a033-1142-4706-ac87-a1d88660598c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8577,7 +8577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1ad1c21-c28b-4d83-9765-b918dde9114f", + "id": "001c06ca-ff4a-4473-9f72-c4512da9de36", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8688,12 +8688,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca2f6d9a-8a8d-4a94-9da2-5181c0ae9fb3", + "id": "f1334d19-76af-44b8-93af-94a5d6835182", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8809,7 +8809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff8a6081-37a7-4a3c-a327-25c034b9536c", + "id": "b7df8619-3b6b-48e3-91ea-272da759367a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8920,7 +8920,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8937,7 +8937,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": "b337ff0d-eff6-44dd-b32a-df4684789134", + "id": "bfd6f9a6-ec28-4981-8f1d-ef86bec17664", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -9048,7 +9048,7 @@ }, "response": [ { - "id": "1d4c8ccd-a6ab-4173-a23b-28716aa07a75", + "id": "30534dcf-6e2a-43aa-9be5-3d6c0588dd18", "name": "List of account activities", "originalRequest": { "url": { @@ -9168,12 +9168,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\",\n \"completionStatus\": \"SUCCESS\",\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\": \"EXPIRED\",\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\": \"REMOVE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"enim7\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"REJECTED\",\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\": \"DELETE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"Excepteurad\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"TERMINATED\",\n \"clientMetadata\": {\n \"incididunt_b4a\": \"\",\n \"eiusmod__\": \"\"\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\": \"SUCCESS\",\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\": \"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\": \"ADD\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"nonc__\": \"\"\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\": \"DISABLE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"irurec\": \"\",\n \"voluptate_c4f\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"EXECUTING\",\n \"clientMetadata\": {\n \"do_807\": \"\"\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\": \"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\": \"EXPIRED\",\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\": \"MODIFY\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"esse7bd\": \"\"\n },\n \"removeDate\": \"\"\n },\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\": \"ADD\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"exercitationc\": \"\",\n \"adipisicingee3\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"EXECUTING\",\n \"clientMetadata\": {\n \"consectetur7\": \"\",\n \"sintf1d\": \"\",\n \"mollita\": \"\",\n \"Excepteur_292\": \"\"\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\": \"CANCELED\",\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\": \"DISABLE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"auted\": \"\"\n },\n \"removeDate\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"requested\": \"\",\n \"approvalStatus\": \"REJECTED\",\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\": \"CREATE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"qui_f4b\": \"\",\n \"commodo83\": \"\",\n \"exercitationa\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"TERMINATED\",\n \"clientMetadata\": {\n \"anim_4b\": \"\",\n \"consectetur_358\": \"\"\n },\n \"cancelable\": \"\",\n \"cancelComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "69b23182-bc9a-4ef0-bc5c-91f39dfb79b7", + "id": "a8c5a030-b161-4bc5-bd01-16d574aa91c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9293,12 +9293,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a725800-482d-4663-b46e-65ef84d234f7", + "id": "715f2cd6-faa6-4da2-90e9-b57cbbc8f5c8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9423,7 +9423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f670a23e-29a4-4efa-b4e9-407ee238162b", + "id": "0a7aba14-ecb6-4ad9-b564-6dbcaa71bff0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9543,12 +9543,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "49a60fd8-26d7-4a65-91cd-b22eda72160e", + "id": "ce5d28f0-5817-4f2c-9c1c-7a7c2004efcd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9673,7 +9673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b814dd1-5533-450f-bbc4-3955462e2dfd", + "id": "b8ade7e2-9089-40ef-be0e-eb77bdf48bb4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9793,7 +9793,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -9804,7 +9804,7 @@ } }, { - "id": "806bb2f1-5c78-4408-87e7-a5de48921da3", + "id": "25d83404-285c-414f-9ca8-a98bc34d8d85", "name": "Get Account Activity", "request": { "name": "Get Account Activity", @@ -9841,7 +9841,7 @@ }, "response": [ { - "id": "ef0fa3b6-d231-4ec8-8639-6b43b9e6f942", + "id": "4da112ec-cf9b-4ecd-baec-a1aa421bc54b", "name": "An account activity object", "originalRequest": { "url": { @@ -9880,12 +9880,12 @@ "value": "application/json" } ], - "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\": \"RETURNED\",\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\": \"CREATE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"velit_a8_\": \"\",\n \"dolor_427\": \"\"\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\": \"MODIFY\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"mollit_a7\": \"\",\n \"enim5cf\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"EXECUTING\",\n \"clientMetadata\": {\n \"sit2b0\": \"\",\n \"tempor68b\": \"\",\n \"animaf4\": \"\",\n \"pariatur_b_b\": \"\"\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\": \"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\": \"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\": \"DISABLE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"ut_5\": \"\",\n \"in_6\": \"\"\n },\n \"removeDate\": \"\"\n },\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\": \"REMOVE\",\n \"attribute\": \"\",\n \"value\": \"\",\n \"nativeIdentity\": \"\",\n \"sourceId\": \"\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"\",\n \"requestedObjectName\": \"\",\n \"requestedObjectType\": \"ROLE\"\n },\n \"clientMetadata\": {\n \"est_8\": \"\",\n \"laboris_80\": \"\"\n },\n \"removeDate\": \"\"\n }\n ],\n \"executionStatus\": \"TERMINATED\",\n \"clientMetadata\": {\n \"est70a\": \"\",\n \"quib2\": \"\",\n \"tempor4d\": \"\"\n },\n \"cancelable\": \"\",\n \"cancelComment\": {\n \"commenterId\": \"\",\n \"commenterName\": \"\",\n \"body\": \"\",\n \"date\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1652ccdc-121a-4d93-9d28-cf079ab834a2", + "id": "3fbde4d1-ad03-4275-8be0-76f921c71d4b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9924,12 +9924,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a8e5539-145f-4f85-b702-946f7286eb9a", + "id": "82c4fbeb-c983-4e61-b97e-a0ed527ee98d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9973,7 +9973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55fb5b05-1dcd-4ea5-9349-672e01a3471d", + "id": "8e7550e9-6746-4dcc-af6e-6b3b219560b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10012,12 +10012,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb85abec-6dfb-425e-b045-be00af45ac58", + "id": "af6e21af-b03c-4a32-abf0-22b35ed64000", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -10056,12 +10056,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5039ca9e-d4bf-41eb-be00-38609bedd828", + "id": "693fb093-28ce-46fb-bc8f-0c229db30377", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10105,7 +10105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62b3ac78-6f5e-42cd-8b70-1225e2db48e9", + "id": "49644852-ffaf-463f-a1ae-a7308b591a7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10144,7 +10144,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -10161,7 +10161,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": "c6af3abf-416d-4652-8c85-a2245e23c33d", + "id": "c5fcd253-ce92-4899-ac3f-762cc4174617", "name": "In-progress Account Aggregation status", "request": { "name": "In-progress Account Aggregation status", @@ -10199,7 +10199,7 @@ }, "response": [ { - "id": "7251fe41-c3e6-4bc9-a9de-953eccf9db2f", + "id": "39254d8a-5a8b-4157-bf0a-36ef3a240b7b", "name": "An account aggregation status object", "originalRequest": { "url": { @@ -10239,12 +10239,12 @@ "value": "application/json" } ], - "body": "{\n \"start\": \"\",\n \"status\": \"TERMINATED\",\n \"totalAccounts\": \"\",\n \"processedAccounts\": \"\"\n}", + "body": "{\n \"start\": \"\",\n \"status\": \"STARTED\",\n \"totalAccounts\": \"\",\n \"processedAccounts\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "428abc26-cb14-48b4-bc70-57a5f69f70b5", + "id": "9221dcd6-20d7-4621-8333-9f9019d84f5c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10289,7 +10289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ee43030-5e49-4119-b841-f024bc74bdc4", + "id": "19fdc69a-c7a5-4071-9ac2-119f2dcf0485", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10329,12 +10329,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e08d08cd-1b28-483d-a309-454f2c56da54", + "id": "8d520e0d-c664-460d-b1eb-569c95e4a0f2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -10374,12 +10374,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "888756da-fdbc-4fe5-a8cb-faaa3880ca7a", + "id": "05dd1ac2-1695-4106-a941-498e43f4e1e5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10424,7 +10424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f42c0138-be6a-4c2d-88c9-c18523f7fddb", + "id": "93a39889-d62c-46c5-b97a-838e6c32c5c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10464,7 +10464,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -10481,7 +10481,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": "3d308411-498c-43d4-9bc7-1c8a7ed8b1c9", + "id": "8b03a660-961f-4dc6-9148-38757fc29796", "name": "Accounts List", "request": { "name": "Accounts List", @@ -10565,7 +10565,7 @@ }, "response": [ { - "id": "2f4c3a45-4400-4445-9511-d87555614ced", + "id": "c9c93d9f-8cc6-4f34-bdcb-7df2434b9e15", "name": "List of account objects", "originalRequest": { "url": { @@ -10658,12 +10658,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 \"Excepteur__\": false,\n \"adipisicing_149\": -99075075.12626417\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 \"commodo_b9\": \"cupidatat sit in tempor reprehenderit\"\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 \"esse_cf1\": -26686182\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 \"eiusmod_73a\": false\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93c07527-13d5-4218-91b8-68741ea4cd9d", + "id": "1fda15e5-bea2-4783-bc2b-d1704c0e6424", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10756,12 +10756,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4faca43-d20f-4f3e-bd33-3aabffe0a6ac", + "id": "2b729460-148c-41d2-af56-d858df6c2f75", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10859,7 +10859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfa9e428-3c30-495d-b9e5-098a26bd5f04", + "id": "576db06f-21ab-417a-b3d7-d7d27f9d6739", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10952,12 +10952,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7abc927d-1956-4af1-b437-d9cc519a5708", + "id": "eff197c5-c1d1-4f7a-9d0e-1fd6eca129db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11055,7 +11055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7684bef7-69b6-49b3-acd0-a9591f2f1160", + "id": "63ec36d9-215f-4a31-96fb-b1a927227e39", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11148,7 +11148,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -11159,7 +11159,7 @@ } }, { - "id": "131bc45b-4d3c-41c1-98d2-e6d0e4e623e6", + "id": "c808a2df-9645-4b3a-aaee-1ffc66b31095", "name": "Create Account", "request": { "name": "Create Account", @@ -11201,7 +11201,7 @@ }, "response": [ { - "id": "ad4b9381-0d6b-4081-bb62-9a93992c49d4", + "id": "afd7e92c-d01b-4f66-9ff5-6fbda7ff35c2", "name": "Async task details", "originalRequest": { "url": { @@ -11257,7 +11257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58987ce5-0833-4d5b-ad60-c38ebd829438", + "id": "5e581733-2a1b-4ced-98d4-ba6714c0ee28", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11308,12 +11308,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "077c5cec-0f23-45d3-b320-f9271926ee99", + "id": "4c6d39de-1dc2-4f1a-a56f-42ab837b6687", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11369,7 +11369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a729f782-694f-4480-ae92-7f01974d2a57", + "id": "fad14df9-d73f-4770-ace9-7a2fe9004dbb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11420,12 +11420,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4ed731c8-8e17-416a-9c5d-ffffdc3a3cae", + "id": "bd70be42-f0ba-4570-9d65-fdb928e02196", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11481,7 +11481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b89f7f47-8eb7-424f-bb72-ed0f2f78fc28", + "id": "b85e958f-8b7c-4290-b101-a1e8ab2d5f9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11532,7 +11532,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -11543,7 +11543,7 @@ } }, { - "id": "dceddcfe-8aa4-4525-a393-efc55a796040", + "id": "366e57ca-3a8d-45bd-b230-b6bdc4a98dfa", "name": "Account Details", "request": { "name": "Account Details", @@ -11580,7 +11580,7 @@ }, "response": [ { - "id": "6446629f-23d7-43b0-9c5c-27d34f61db8a", + "id": "5b3b32ba-566a-4d45-81ab-da62675a8849", "name": "An account object", "originalRequest": { "url": { @@ -11619,12 +11619,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"sunt_9d9\": 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 \"anim6\": -24406565,\n \"deserunt02e\": \"ipsum ei\",\n \"culpab\": \"cupidatat qui cillum\"\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": "bc764ba1-6f0c-4cdf-aa76-3d3091e3cdf0", + "id": "664202ba-3607-413e-93a3-53ceca05f6e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11663,12 +11663,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "95c9a558-abc9-42df-a18c-3f955c51d0e2", + "id": "58b13e70-df15-4477-8d66-7c3f10428300", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11712,7 +11712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ad6eaf0-0580-4b28-933b-90c4b2b8a7e3", + "id": "8120c226-6f61-452c-be84-0025e4573658", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11751,12 +11751,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7caa71a8-c2f4-45db-920e-b90e5b7dc77a", + "id": "685c990f-7e41-4c60-a74d-1e30659e00f7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11795,12 +11795,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e994fa5-6cfd-48f7-9539-12c207e43dd8", + "id": "a2a23f21-f3f0-4d1c-bdc4-30a076bcd3bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11844,7 +11844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4feb9db4-0bf0-4bb6-b3f7-2635ec7ed6a6", + "id": "43516378-3f8b-46ab-801e-76e059038439", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11883,7 +11883,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -11894,7 +11894,7 @@ } }, { - "id": "15d8b482-758e-4dd9-8bd3-9a7862088ae4", + "id": "a7eb6c77-2f67-43c8-b129-4cd970f37d10", "name": "Update Account", "request": { "name": "Update Account", @@ -11944,7 +11944,7 @@ }, "response": [ { - "id": "7475a52f-745e-4e0c-a635-013341a99341", + "id": "d4683384-2947-4ba1-a1f7-ff71107abc1c", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -12001,7 +12001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b09e7be3-dd31-42a6-b347-fdb53e84f108", + "id": "2211a823-28c7-4d9b-a4ce-7bfe73cd6fbf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12053,12 +12053,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0d91da92-c792-4aed-90e6-c221fe19dbac", + "id": "b3920beb-379d-4733-87fc-7010f7e1886f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12115,7 +12115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6dee6f9-9ca4-40e0-887e-e6f10542fdda", + "id": "656aa1d2-77f3-4620-bdc5-cdcda31b286b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12167,12 +12167,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71c2b9e2-18c7-416e-8e65-72d3152382ff", + "id": "2cf60650-c1d5-480a-ba3b-5618456ae7de", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -12224,12 +12224,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2716c5f0-d7b8-438f-912f-5800d5041a5f", + "id": "0c9a1800-1cbb-45ba-8f32-2e6f1b334758", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12286,7 +12286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "983868bf-5fe8-416e-9946-20aa87802475", + "id": "05c868cd-10d0-4526-a366-dda384dfc09a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12338,7 +12338,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -12349,7 +12349,7 @@ } }, { - "id": "d05d6d7c-775b-48ca-b641-7cedeaef91ca", + "id": "f582f2d8-71a4-4b8b-946f-bcb3e1240fd3", "name": "Update Account", "request": { "name": "Update Account", @@ -12399,7 +12399,7 @@ }, "response": [ { - "id": "74a6d7e3-574e-45d6-b17d-1f03cd11b411", + "id": "e25d0c98-5275-44bf-b1f0-eabf1d9bf536", "name": "Async task details", "originalRequest": { "url": { @@ -12456,7 +12456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa72d280-0fff-49d7-802b-7b9abd74d3ef", + "id": "672a0f76-1478-498c-ba7a-e156700a59f8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12508,12 +12508,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "18dc2738-c1f5-441e-883b-559bb104db11", + "id": "72fe442e-1e3a-4b17-a72c-908b7ab814f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12570,7 +12570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "126f8833-57ee-4d79-88dd-53d930b72101", + "id": "b126b204-ead1-4272-afa9-c0b1709b1ad5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12622,12 +12622,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d20c480-2774-4a0f-85cb-22f5a88316b9", + "id": "e588aba6-3a5e-4ed7-91d1-e12e0a1c06d4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -12679,12 +12679,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5b39fad-7189-4141-a4f6-7070578a9e47", + "id": "b74bc64d-ecb4-46fe-b6a6-628e1fb8386d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12741,7 +12741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0596ac8f-e591-469b-bdec-92a212eb4b5b", + "id": "c1440d77-bbe0-4337-884b-6e548995527b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12793,7 +12793,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -12804,7 +12804,7 @@ } }, { - "id": "fe54e6ea-2a5d-4d73-b4ed-51e541639bc5", + "id": "3ea3a208-71e6-481f-bd69-a07af5b5f7b8", "name": "Delete Account", "request": { "name": "Delete Account", @@ -12841,7 +12841,7 @@ }, "response": [ { - "id": "0cb7d528-064c-4b3c-ab86-19da79e54908", + "id": "b3123102-5e77-4232-bb0a-e26f58c2b128", "name": "Async task details", "originalRequest": { "url": { @@ -12885,7 +12885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd9655af-7058-47cc-91f9-8b0438ee3d82", + "id": "330665e4-3200-478e-965a-ccc31bdc1fd9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12924,12 +12924,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9b70abef-483e-4839-8eba-b99f09bba1ef", + "id": "573cf86b-8467-4800-a141-c68a29f68e3a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12973,7 +12973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "600a9a02-097e-4405-a3cd-28a84538b6a9", + "id": "24ca34c5-6175-4425-b700-bd48ce1717c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13012,12 +13012,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7eb9b89-d3c5-401e-9d9e-3980b811bf3c", + "id": "afbf55e2-40ba-4df1-942f-ce8936ca6a21", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13056,12 +13056,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aba3dd2e-fa2c-416e-b7a0-60e674352d9e", + "id": "6ff653b8-9969-49aa-845f-bb9d03bded7d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13105,7 +13105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ccdf0f1-59f6-44c1-96c6-9af17ddda522", + "id": "00e57cc2-b7bb-4b67-af4d-98265ff0b3bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13144,7 +13144,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -13155,7 +13155,7 @@ } }, { - "id": "c35310cd-3a22-46ca-8f17-7fdd47bd5dc2", + "id": "dc73ab61-0640-4140-930d-c2fb9ce68b8e", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -13221,7 +13221,7 @@ }, "response": [ { - "id": "15e743b4-f94a-43e3-b7d5-70cec7748105", + "id": "3394e50f-e748-4b65-ae89-9403235f971f", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -13289,12 +13289,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 \"Lorem_72f\": 92414801.05428982,\n \"cillume7\": -41810756,\n \"eiusmod_6\": -92210243.43732154\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 \"cupidatat_2\": true\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 \"occaecat_9\": -34200185\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 \"Ut_f\": false,\n \"eae\": 42539381.04411\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": "0b59ce43-7b27-4923-b285-3413454b0388", + "id": "3c5bdd07-4045-4517-88b3-965530febf78", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13362,12 +13362,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c46f17f-79c3-4fe4-9d7b-8dc942b24776", + "id": "131b3bc7-e7bf-4fbf-8f84-6ea00ee4b80d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13440,7 +13440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fecf241-7d02-46c0-9f2d-cfffd2dd7c48", + "id": "a38c2059-558e-4752-be06-83c4e3e84c73", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13508,12 +13508,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56e042b3-5cc5-444b-b642-7967b40c6e64", + "id": "12c4ceb5-8eb3-4477-9642-47bfbbc31a0a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13581,12 +13581,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad33f27b-f413-45da-9129-3ac974c58916", + "id": "3bf1df7d-d241-46ea-a006-ef768f374d49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13659,7 +13659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6a516ea-4f19-45fa-9965-83db15990d51", + "id": "bcb8b277-783e-4622-a511-bd0b63ec2d77", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13727,7 +13727,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -13738,7 +13738,7 @@ } }, { - "id": "fd63e0e8-ac50-4fa3-b9e7-5530d46bfd27", + "id": "86a20679-302f-4014-ae6f-bc9bb66ba20c", "name": "Reload Account", "request": { "name": "Reload Account", @@ -13776,7 +13776,7 @@ }, "response": [ { - "id": "0b877f40-f3fe-446e-a8c9-9f0e0a8eff71", + "id": "990153ba-18d5-40a9-b1f0-32408d5e1178", "name": "Async task details", "originalRequest": { "url": { @@ -13821,7 +13821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4d519ac-9ed2-417d-8c8e-836a8ad8133a", + "id": "09bdb3cd-2907-47cd-8f29-6d24616c3e62", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13861,12 +13861,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "13770bdd-db8e-416c-95c7-07ae843ad016", + "id": "ccee547d-4c14-4194-8550-1b4ba82cc51d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13911,7 +13911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12450777-d7bb-48f5-a2a7-dba9a00c3324", + "id": "079f0f70-f620-4bf2-8fa3-25ff7a01c2b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13951,12 +13951,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "202c6b00-5e77-4ae6-9a9f-70cf02af611c", + "id": "4b475828-a5ea-4eb1-8534-c839026dc9d4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13996,12 +13996,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "11045b52-5915-4623-af3f-714d320a0ac3", + "id": "ee565e3d-9caf-4567-b9f0-0f023d9b6ce4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14046,7 +14046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26712fb0-9116-4a49-a26b-74a82cf9d066", + "id": "b8e69839-42d6-49f6-90a8-314f5c9bde90", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14086,7 +14086,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -14097,7 +14097,7 @@ } }, { - "id": "f2dfd219-23dc-4a9e-b46b-2572bdfa741f", + "id": "7155c17a-cf8d-4d2d-8f2a-b9116bc74fa1", "name": "Enable Account", "request": { "name": "Enable Account", @@ -14148,7 +14148,7 @@ }, "response": [ { - "id": "6805338a-2d36-4856-9346-3e0e451fb1fb", + "id": "9e74a36f-e6b0-462f-9124-eb9b4f5e1a8e", "name": "Async task details", "originalRequest": { "url": { @@ -14206,7 +14206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f921edd2-4bae-418a-a4dc-fa986996652b", + "id": "ca1317b5-8350-4131-ac3f-7200993b4241", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14259,12 +14259,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "22511b9b-cb3d-4bf9-8204-2e1cc341fe91", + "id": "570ceed8-4e76-46b5-9fcf-30588d1622e2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14322,7 +14322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fabdb305-c047-4a04-826d-130fd75f0f60", + "id": "6ad96b5c-3cde-476e-ae97-255f658be7ea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14375,12 +14375,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2b2d80c-216c-42e4-9f2d-a79cede64bc0", + "id": "378e79d4-dc36-4c3f-9ab9-d2eeb704f230", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14433,12 +14433,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec28c66e-830c-4bae-ae48-ba76e437a796", + "id": "ab20c7c7-b4ab-41a1-a5a1-c58e954bf816", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14496,7 +14496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09b5f46d-e565-4179-9656-48d8ba556885", + "id": "1375b06a-8e61-41f0-98fb-ef0f9383bf9f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14549,7 +14549,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -14560,7 +14560,7 @@ } }, { - "id": "d50885c7-c942-4e71-8dc8-4d27328a7bb2", + "id": "d9529a7e-3b7a-485f-860e-eac90a6a37a7", "name": "Disable Account", "request": { "name": "Disable Account", @@ -14611,7 +14611,7 @@ }, "response": [ { - "id": "cc85bee1-a3e4-49af-82ac-23ec662fe078", + "id": "91e954b8-ede3-4c16-bf71-9d6c6a2bf16f", "name": "Async task details", "originalRequest": { "url": { @@ -14669,7 +14669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3209dcd-fd77-4095-8fb9-017931971456", + "id": "2f681f38-b12d-4c3a-aeef-7ac6303bc863", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14722,12 +14722,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b54a916d-f20a-4dbc-8f5d-2806c6af1b70", + "id": "3c6f4390-3c55-452a-999c-66cd1f860743", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14785,7 +14785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8efad68-ae10-45e9-ab1d-35ee5c4aebc5", + "id": "458c8b5c-afa5-473f-81a2-f34c6a3c86bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14838,12 +14838,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4885c00-e4ac-47e6-a6b8-c32306449930", + "id": "c99a504a-e398-485e-9a4e-c904688d2ba0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14896,12 +14896,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "47321969-0453-43ba-a6cd-5003df90674d", + "id": "3c273d33-18dc-4226-9f02-633bbd04198e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14959,7 +14959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc02e4c7-0296-4f81-8697-bfaa08f25ddf", + "id": "1046d20c-0705-4957-b03c-bf8e0f6b52f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15012,7 +15012,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15023,7 +15023,7 @@ } }, { - "id": "66998331-ae09-43a1-9cb8-a64eb973ae57", + "id": "38c76919-ea97-484d-b434-114e3ba440fc", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -15074,7 +15074,7 @@ }, "response": [ { - "id": "3aaf6178-bd31-49af-bc1e-085685655b27", + "id": "d4674ad2-b14c-48b3-98ea-6db09b2c089c", "name": "Async task details", "originalRequest": { "url": { @@ -15132,7 +15132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb156897-f190-47ae-959e-ad883378a460", + "id": "68edc29e-598e-4de5-8c2f-1a5af131b012", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15185,12 +15185,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4401e2e1-8618-4e67-8768-3df01db3b013", + "id": "ae64b0e4-6f3a-46c5-b7c8-9908a896bdd1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15248,7 +15248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b810e63-71f7-48c1-8599-f781c78c4b2b", + "id": "71b41d0a-fc2e-4c0e-9986-3a41992c11ec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15301,12 +15301,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "700342cb-8e3e-4401-b07a-1cfc7270a587", + "id": "f8d3f6ae-3fb7-4769-b246-b144ae822cea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15359,12 +15359,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a60daccd-dbe3-4f84-8c6a-2fcd34094805", + "id": "a41d4d9c-8543-4e26-96e1-0da9f8d69524", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15422,7 +15422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65fa03ad-e82c-41d8-801d-0e92c978871e", + "id": "7d2ab14c-0bc2-4333-a009-4bd5eeadb0c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15475,7 +15475,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15486,7 +15486,7 @@ } }, { - "id": "621ec23c-a3e9-4a09-943c-1c5d54cd6bf2", + "id": "b74d5604-b1f5-4b9d-9474-bc9bd1e0a477", "name": "Enable IDN Account for Identity", "request": { "name": "Enable IDN Account for Identity", @@ -15524,7 +15524,7 @@ }, "response": [ { - "id": "c883bb9e-cf1f-4241-b208-b3079551657e", + "id": "0ffce0a7-b9c2-497d-a1a2-a7ecb12aadd5", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -15569,7 +15569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eac3ca51-77af-480f-80ab-5393d149e274", + "id": "5e53aad1-6fa4-48ff-b2ff-148b2c9c3a7f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15609,12 +15609,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1c73ffb-a029-4299-9851-781059155154", + "id": "636d4ce5-f027-4a6b-a09a-f268f91ee807", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15659,7 +15659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "056a8d5d-43eb-4f1b-8247-54b0385cbfc9", + "id": "7cf72252-3cf9-48b8-b160-d6c992523e80", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15699,12 +15699,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "808df0e2-7908-42b0-a8f5-39bde7b92acf", + "id": "1a3e6a5b-0cfd-47c8-aae9-f87430ab3e0f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15744,12 +15744,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca80b13c-cbe0-4697-8c38-02f21a142409", + "id": "22d004ea-1118-4888-b89e-21c67a8a0297", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15794,7 +15794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f95adf6f-7e73-4b62-b124-9b4e4edd8548", + "id": "23fe2c7a-a7d4-40fc-8c2a-e44947dc6345", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15834,7 +15834,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -15845,7 +15845,7 @@ } }, { - "id": "9a8b382c-1cee-4a9c-8ffc-cb6719a17169", + "id": "dfef5553-caec-43de-8201-db5b379ca823", "name": "Disable IDN Account for Identity", "request": { "name": "Disable IDN Account for Identity", @@ -15883,7 +15883,7 @@ }, "response": [ { - "id": "c6bacc11-a740-4114-a508-30a0387355d1", + "id": "1b5363f1-bcfb-48c2-8f65-c8dcf6d5edd6", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -15928,7 +15928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a876e15f-29aa-424f-9569-9e64c39243ec", + "id": "abf654f8-bc79-488f-81ae-8e4e67103ef4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15968,12 +15968,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "72a267d7-b308-4511-98d3-20f8215b66aa", + "id": "e5d56332-3a6f-428f-8e9a-d27b6286de99", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16018,7 +16018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b1be1d9-01de-40a4-b2ca-667d44b16db8", + "id": "3603a484-f00f-4047-9666-bab771ec2c10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16058,12 +16058,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "960093ee-124b-41ec-85e4-3cba76ce0335", + "id": "b88424c6-3cd5-456c-8a86-ad1d69d3ae74", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16103,12 +16103,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74029b7f-8b19-4f9c-9c89-00b22b0b2a45", + "id": "d3a1dd4f-e2f9-411f-9b28-a4b5ad504b67", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16153,7 +16153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8af1d015-2332-41a8-96f3-f9ffdec99b8d", + "id": "1a5b2431-fb8d-4955-bc9e-7e29fd55e7f5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16193,7 +16193,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16204,7 +16204,7 @@ } }, { - "id": "13eb049f-1a58-4333-9eba-d2ab33d80ac1", + "id": "1afcbc77-1c17-42ad-b072-ed9a05178f04", "name": "Enable IDN Accounts for Identities", "request": { "name": "Enable IDN Accounts for Identities", @@ -16247,7 +16247,7 @@ }, "response": [ { - "id": "4d2ad71a-e2c8-4040-8acb-6064fda8187f", + "id": "8d25b5cb-f4e3-4851-a811-bbce12f5f291", "name": "Bulk response details.", "originalRequest": { "url": { @@ -16304,7 +16304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68e43c2c-a8fc-467e-8960-9967666abb65", + "id": "e5dd706a-e40f-4054-8570-e66f218c4db3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16356,12 +16356,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92dde672-7252-48f8-92ed-a5c402c68566", + "id": "c5ec81ea-faab-4049-9e42-05ac882ea372", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16418,7 +16418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd8e598e-3ff8-4052-acb2-3e6feddeaf84", + "id": "2395dcfb-f986-488c-a8e0-b9120524d92f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16470,12 +16470,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "318480a8-ecc8-46a1-863b-37e91bab13c1", + "id": "bf507da6-f952-4628-a584-376fc5d9c2df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16532,7 +16532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a39ea7e-5d80-4f79-8f93-2f2d5bb9edb8", + "id": "46394c5d-32d0-4d8c-b99d-0c6aa2279325", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16584,7 +16584,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16595,7 +16595,7 @@ } }, { - "id": "0a25abed-7594-4484-9510-67644cfa4cf4", + "id": "035bbb71-6c3a-4670-b4fb-5e36537f7ee0", "name": "Disable IDN Accounts for Identities", "request": { "name": "Disable IDN Accounts for Identities", @@ -16638,7 +16638,7 @@ }, "response": [ { - "id": "56483184-6ef7-4203-9beb-06b49a86eb59", + "id": "d58b2e61-6220-427f-8728-2e4d87b7ce15", "name": "Bulk response details.", "originalRequest": { "url": { @@ -16695,7 +16695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c29126b8-1fc5-4030-84a5-1ee1de335eaf", + "id": "666b2b51-88e2-4b13-95c0-950ca7764a00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16747,12 +16747,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdb23076-4dc3-4924-ab32-01fcca052f16", + "id": "7be5171c-6d18-4215-8d57-044d56e5c96c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16809,7 +16809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1dd777a-ecfa-46b4-8296-44136767a03b", + "id": "084a0fda-d3e7-4822-9205-55f6f933b6b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16861,12 +16861,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae08f1ab-5553-4d05-b9a3-d8012032bcbc", + "id": "ecaa3078-e327-4948-90dd-f8deaf3cbe01", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16923,7 +16923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48af6bc3-6c31-4370-994f-40cb966a0af0", + "id": "3be6dff4-0ea1-4fd7-8502-a14f8f9a4702", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16975,7 +16975,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -16992,7 +16992,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": "4cc42eca-9d0d-4925-862a-8f45b5aec106", + "id": "fd9a047e-9add-4dda-a21d-e45687b9f04a", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -17076,7 +17076,7 @@ }, "response": [ { - "id": "7bb93007-437e-4c88-9efb-b9ca8099adae", + "id": "b012ddfe-e0b1-4bf0-a9af-5975f7906d50", "name": "A list of campaign objects.", "originalRequest": { "url": { @@ -17169,12 +17169,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\": \"ARCHIVED\",\n \"correlatedStatus\": \"UNCORRELATED\"\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\": \"STAGED\",\n \"correlatedStatus\": \"UNCORRELATED\"\n }\n]", + "body": "[\n {\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\": \"CORRELATED\"\n },\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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7653ce50-bbdf-45fc-9717-27975862f903", + "id": "5552a27f-adb0-426d-8cf9-155e445dc675", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17267,12 +17267,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c4f6b12d-15da-4909-8e39-f3eb96ecfae2", + "id": "adb495a2-9c0d-42e7-9acc-33d82809a1cc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17370,7 +17370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11930212-1004-409a-a6bd-95054074f190", + "id": "5b50049a-567c-4d55-8191-9ffef7936a1a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17463,12 +17463,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "392b0d2e-5932-45b4-8eef-6efb08969d4d", + "id": "09793cec-6c90-497f-9161-1830014309d1", "name": "Too Many Requests - Returned in response to too many requests in 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 @@ "_postman_previewlanguage": "json" }, { - "id": "02ec58ef-5c7d-41b8-80bb-35e4c0191f65", + "id": "eff8edf6-4f6c-450d-9ef4-88b13a70ad34", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17659,7 +17659,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -17670,7 +17670,7 @@ } }, { - "id": "6abc8b92-6211-4f27-bfa2-29c9e767aefc", + "id": "96c6450a-8d7c-4511-bade-fc7f72902f39", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -17701,7 +17701,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\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\": \"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_PROFILE\",\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\": \"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\": \"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\": \"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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\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\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\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\": \"ERROR\",\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\": \"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\": \"ALL_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -17712,7 +17712,7 @@ }, "response": [ { - "id": "cc49c25b-ac54-4366-ad45-f528d417e786", + "id": "f6e3ebab-30fb-41bf-91bf-21ac0b850dc0", "name": "Indicates that the campaign requested was successfully created and returns its representation.", "originalRequest": { "url": { @@ -17746,7 +17746,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\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\": \"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_PROFILE\",\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\": \"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\": \"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\": \"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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\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\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\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\": \"ERROR\",\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\": \"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\": \"ALL_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -17763,12 +17763,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\": \"STAGED\",\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_PROFILE\",\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\": \"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\": \"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\": \"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}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\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\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\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\": \"ERROR\",\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\": \"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\": \"ALL_DECISIONS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e1e1ed6e-427e-44d7-a06f-201a676fd7f5", + "id": "e4db6464-3faa-4613-a01d-e93238ae21b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17802,7 +17802,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\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\": \"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_PROFILE\",\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\": \"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\": \"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\": \"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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\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\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\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\": \"ERROR\",\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\": \"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\": \"ALL_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -17819,12 +17819,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "47fda685-54c2-4b26-845e-e4b02a367ec9", + "id": "89167162-d60b-4a15-8448-d33955ec9d14", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17858,7 +17858,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\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\": \"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_PROFILE\",\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\": \"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\": \"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\": \"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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\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\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\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\": \"ERROR\",\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\": \"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\": \"ALL_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -17880,7 +17880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1addcc4e-ef20-4a82-a4ef-2970795da778", + "id": "5434dfc9-68f0-4af1-8cbc-5109a77505e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17914,7 +17914,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\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\": \"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_PROFILE\",\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\": \"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\": \"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\": \"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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\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\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\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\": \"ERROR\",\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\": \"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\": \"ALL_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -17931,12 +17931,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ae9aaef-3ef5-496c-8b97-4c60d52d8d7c", + "id": "d26c0875-9f82-42d4-aa1d-12712bfa458b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17970,7 +17970,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\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\": \"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_PROFILE\",\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\": \"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\": \"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\": \"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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\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\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\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\": \"ERROR\",\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\": \"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\": \"ALL_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -17992,7 +17992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3629d6a-9146-4a1f-a3ca-68e9e1c2677c", + "id": "dbcf14be-d5da-454d-8b46-6177efa3f3c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18026,7 +18026,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SEARCH\",\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\": \"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_PROFILE\",\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\": \"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\": \"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\": \"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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"MANAGER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"ACTIVE\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\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\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ACCESS_PROFILE\",\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\": \"ERROR\",\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\": \"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\": \"ALL_DECISIONS\"\n}", "options": { "raw": { "headerFamily": "json", @@ -18043,7 +18043,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18054,7 +18054,7 @@ } }, { - "id": "5d932ab2-5e55-4079-a85c-178233a9436e", + "id": "f8ef403b-a705-4a12-9274-77008c0d1871", "name": "Deletes Campaigns", "request": { "name": "Deletes Campaigns", @@ -18097,7 +18097,7 @@ }, "response": [ { - "id": "989750a0-2d04-4dfa-95a0-071adee35d34", + "id": "b0facbd9-2bf5-476d-a4f3-4e73874b9ef7", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -18154,7 +18154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90144a12-ce55-4543-a94b-b21933d3517f", + "id": "2cf8c522-6b7d-4954-acdc-f8df2e757162", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18206,12 +18206,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "82a4784a-db5d-49bd-af7c-cb6661575e46", + "id": "33447dec-38ed-47b4-88a1-6235c12d09dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18268,7 +18268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60e37fbe-b302-47eb-83fc-53ac55e7933b", + "id": "77a4eb53-ac39-4af9-941d-81987dae1d72", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18320,12 +18320,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "49423cf2-5b9d-4b12-aa07-569a9fe99d47", + "id": "41eaa7dd-011d-4b95-8152-869eacd88145", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18377,12 +18377,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71336223-234c-4b76-b4d2-cbe6543d56dc", + "id": "ac1fdd5b-3fd6-4ad2-9ec7-0d6329c6ba84", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18439,7 +18439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69d0cb65-8407-4c53-8f29-fce0d793841b", + "id": "da2fa824-a134-48c1-9ee4-f32fc8bb03d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18491,7 +18491,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18502,7 +18502,7 @@ } }, { - "id": "7cf8bb7c-0e66-4472-80b2-4db348d1c560", + "id": "7b6ff0a1-dc8b-466a-b978-2fabd8f13021", "name": "Get a campaign", "request": { "name": "Get a campaign", @@ -18539,7 +18539,7 @@ }, "response": [ { - "id": "8da8d0d8-10a4-4d2b-9792-c8d5c139a2c1", + "id": "313c865e-afbf-4907-a953-29fcbecfee2f", "name": "A campaign object", "originalRequest": { "url": { @@ -18578,12 +18578,12 @@ "value": "application/json" } ], - "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}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"PENDING\",\n \"correlatedStatus\": \"UNCORRELATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e434ad1f-a5f1-477f-b7b5-64e40bc85867", + "id": "c24aa6d1-1b08-43f5-ad7a-eebd66d308e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18622,12 +18622,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a862467e-10d3-4625-94f3-7a944dd3a05c", + "id": "3e4d6d54-0352-475e-ac30-f47bc0c20929", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18671,7 +18671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0d37459-05c9-4f3a-a7a1-b4fd8ac11a94", + "id": "facf02a4-6836-4dbf-bddd-ae1866869913", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18710,12 +18710,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f68030e-8f24-4aa6-99c8-49205ff68f5f", + "id": "82c91ad2-31ae-4fd0-bb46-79074563f4a0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18754,12 +18754,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2206983-d8e8-41b2-8fd9-43600d31acf2", + "id": "b7480ccd-8a7e-4dbf-ae9e-82c9ddb475f8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18803,7 +18803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdae2e17-cfed-4d70-9a19-dbc6b5880362", + "id": "03435678-97c0-4ae9-ab54-e43dda9e40a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18842,7 +18842,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -18853,7 +18853,7 @@ } }, { - "id": "d5a794e6-c4bf-4100-b558-124eb7d337a0", + "id": "4c970592-80f4-40ce-8c42-d908b0258b5e", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -18903,7 +18903,7 @@ }, "response": [ { - "id": "d97ced03-08ce-48ec-88dc-c54447bc4ffd", + "id": "28763d6e-aa4f-463f-9012-a18bb6557588", "name": "Indicates the PATCH operation succeeded, and returns the campaign's new representation.", "originalRequest": { "url": { @@ -18955,12 +18955,12 @@ "value": "application/json" } ], - "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}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"SOURCE_OWNER\",\n \"id\": \"\",\n \"deadline\": \"\",\n \"emailNotificationEnabled\": false,\n \"autoRevokeAllowed\": false,\n \"recommendationsEnabled\": false,\n \"status\": \"PENDING\",\n \"correlatedStatus\": \"UNCORRELATED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "378c6d77-132b-46e2-9d3b-5b1f387f63b5", + "id": "6ec7fd50-eda1-417a-851c-3f4b0f9ad009", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19012,12 +19012,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "158cbfa9-01e7-4af9-9bfd-796b5dc8a825", + "id": "3ef2f9e3-9b73-41fc-b5ff-a6d00ceaff09", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19074,7 +19074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c248e600-0869-48e3-a4d1-66a2e54125af", + "id": "ca8975e8-668c-4de6-bfef-4e17b73bbb13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19126,12 +19126,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b158daed-6dce-487c-ab81-2136c7ff2035", + "id": "a81285f4-f920-4b81-91f3-8255370cd7ce", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19183,12 +19183,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "30a018a0-ad59-4ccf-becb-42c0860ea34c", + "id": "35e5f6b6-a16c-4e90-82c8-ec64369e8602", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19245,7 +19245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f34f254c-866c-4c4c-bfa4-6f0c2ef07d89", + "id": "dd648cd2-041b-47c2-b32d-11cb15efd5e8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19297,7 +19297,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19308,7 +19308,7 @@ } }, { - "id": "5d2cef0f-0d23-4bd1-8dbf-6b45b6cec69c", + "id": "76d09945-aa32-4849-8bd7-1abdb3e66e3e", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -19359,7 +19359,7 @@ }, "response": [ { - "id": "802d8a3d-3771-4c73-bf83-40f2fed43871", + "id": "4a658814-8ae1-451f-962b-24ba9d10b28c", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -19417,7 +19417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "733f4354-124e-4033-a4df-b5f3ade194d8", + "id": "469b8703-e2b7-4e42-afa1-fde711bff63b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19470,12 +19470,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e279568c-c7fa-40a7-904c-f3c4be2b9f02", + "id": "60e3b579-aa57-43d8-998c-1d9a30a5f36d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19533,7 +19533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0711f774-e6f9-4f95-b869-e1a3bd06a308", + "id": "3ce612cf-6c27-4028-815b-841aa6d99410", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19586,12 +19586,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd7024c7-ff6d-4bd5-a7f8-5e4e96876658", + "id": "446ee700-8312-4d9c-b644-215fa757540c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19644,12 +19644,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a172f754-7d1b-4e1b-a698-2839fc155e19", + "id": "56e7add6-a81d-4361-82fb-e1759776fb2c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19707,7 +19707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1a4506c-72e4-4d30-b08e-5220260f52dd", + "id": "918ae35f-6759-4125-ac57-c22526bc320d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19760,7 +19760,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -19771,7 +19771,7 @@ } }, { - "id": "64ddbd5f-6919-480b-8907-838031be8a6d", + "id": "aae0c6ce-6823-41f0-aadb-ea841abaf71e", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -19822,7 +19822,7 @@ }, "response": [ { - "id": "228e2dda-6837-4c19-af60-75c370802708", + "id": "258bff7b-a43c-4e44-a664-277a159c46a5", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -19880,7 +19880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f28f6d5e-69ed-4747-ba2d-2abf6a998ab9", + "id": "0d4fb597-802a-44c2-b477-1ff7dec4b8a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19933,12 +19933,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f13fcb2-3c89-480d-aec2-8d05f1d31ef3", + "id": "207696b1-b264-4caf-af20-2d6d442ede5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19996,7 +19996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13096f11-325a-4dfb-b761-a4485495c20f", + "id": "34f75f74-9155-4436-911c-4c1d8e9b65a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20049,12 +20049,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ac21829-66c3-4d8b-a3dd-48d4340624b5", + "id": "f4cfad26-006c-4617-8507-473c0a03d9e6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20107,12 +20107,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "42c243f3-ed00-4c78-a2c1-ccb08b9c1896", + "id": "e0f3438a-426c-4e33-ac79-f34a7bca0405", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20170,7 +20170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11488c48-2368-4b17-9810-d05f700eb3a2", + "id": "ab194cf7-5b54-4f4a-aa06-6b64618e0852", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20223,7 +20223,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20234,7 +20234,7 @@ } }, { - "id": "219c4ad4-09ff-48c8-bf75-c1ac745beaad", + "id": "2df8ba75-a90e-4d2e-8bd1-9fdc3c871f74", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -20272,7 +20272,7 @@ }, "response": [ { - "id": "7ef46ab0-a94c-421f-bbeb-5155afb86726", + "id": "6ed9e3f5-ae3f-4bda-a352-0a9f3559107a", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -20317,7 +20317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79c139a2-0b46-45da-ad8e-d09bc769ddad", + "id": "fc5f0af1-b2ba-4f70-9a79-97bc46cd1c47", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20357,12 +20357,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b4bd156d-f943-4eaa-8629-6cfb9039ba13", + "id": "31751e51-4acf-43c0-8799-5fe01692a59d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20407,7 +20407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d54cf06-0057-4348-b19f-eea7ae0a7e7f", + "id": "103b7d9a-ee49-42b8-a68c-880c899bac9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20447,12 +20447,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d96bdd6-88e4-422c-a100-540a171de287", + "id": "af3e8f70-46ce-4088-affc-6f34219f2325", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20492,12 +20492,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a7a83a8-074a-40a1-b13e-573b8272d572", + "id": "fa664184-ab07-44da-b255-1fda902cb0c0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20542,7 +20542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9dbc590-67b2-468c-b76f-40c0fe94a2c5", + "id": "1487c217-78e2-49b1-b44c-69a222efd94d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20582,7 +20582,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -20593,7 +20593,7 @@ } }, { - "id": "96fc3306-dfa4-46d4-851e-83a730615795", + "id": "401b117c-34c1-476c-851b-4df8e54f9f5f", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -20644,7 +20644,7 @@ }, "response": [ { - "id": "f93b1fee-18a2-4548-843c-cdc05c17a0f1", + "id": "2f375b23-f269-4cba-ab0b-9fa984f8162b", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -20697,12 +20697,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"type\": \"CAMPAIGN_CREATE\",\n \"targetType\": \"CAMPAIGN\",\n \"targetId\": \"\",\n \"status\": \"IN_PROGRESS\",\n \"errors\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"created\": \"\"\n}", + "body": "{\n \"id\": \"\",\n \"type\": \"CAMPAIGN_DELETE\",\n \"targetType\": \"CERTIFICATION\",\n \"targetId\": \"\",\n \"status\": \"QUEUED\",\n \"errors\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3004eebd-3a6f-4f53-9618-32511e0ca94b", + "id": "1754855b-e30e-4d08-8212-bde5cf7bd64e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20755,12 +20755,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0289f43c-5ee5-402e-9784-cdb5021f17ff", + "id": "9ea6ebfe-976d-443c-b8b5-1a075cde5e80", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20818,7 +20818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1ef5001-5b46-4aa0-9a0b-7a89a13f5879", + "id": "1efb93eb-7eaa-45a9-a8e0-f84c76afaf7e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20871,12 +20871,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b2b1089-ba24-40c1-8dda-e96139bc3672", + "id": "626b70e6-3852-4538-bd35-6aac551bb344", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20929,12 +20929,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb7ba330-c8cb-4f74-8b23-c92668e0dc9a", + "id": "b9aa401e-b626-4bbf-b08c-34b79cfd7f17", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20992,7 +20992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aba111f2-8725-4226-b152-53a797d9c8b4", + "id": "1a32dc59-5fa2-42fa-8e9e-7ae364903922", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21045,7 +21045,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -21056,7 +21056,7 @@ } }, { - "id": "252f7b1c-d3b0-4673-9380-56210e3128fa", + "id": "3a41b117-0537-4b92-b64b-cbe1a52986d0", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -21094,7 +21094,7 @@ }, "response": [ { - "id": "c3cdb1a0-c863-4012-ad84-e7eb9365c2d0", + "id": "6c529f46-cc2f-4303-bdd3-888cff6f4333", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -21134,12 +21134,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"reportType\": \"CAMPAIGN_COMPOSITION_REPORT\",\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"SUCCESS\",\n \"lastRunAt\": \"\"\n },\n {\n \"reportType\": \"CAMPAIGN_REMEDIATION_STATUS_REPORT\",\n \"type\": \"SOD_POLICY\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"TERMINATED\",\n \"lastRunAt\": \"\"\n }\n]", + "body": "[\n {\n \"reportType\": \"CAMPAIGN_REMEDIATION_STATUS_REPORT\",\n \"type\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"WARNING\",\n \"lastRunAt\": \"\"\n },\n {\n \"reportType\": \"CAMPAIGN_REMEDIATION_STATUS_REPORT\",\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"TEMP_ERROR\",\n \"lastRunAt\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e167050-dcbf-417d-a987-c64532c26054", + "id": "8603d180-d91d-423b-815b-5caf292b42eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21179,12 +21179,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "efeebccd-41f6-492e-a93e-43af6901eb24", + "id": "353a1cd5-d133-4119-a1b4-4bfa75976850", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21229,7 +21229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "904c56f9-dc05-4b81-b3fc-3572417dd2bf", + "id": "aa88e9b2-d1f7-4a4e-94c6-31cfd3fa3a32", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21269,12 +21269,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b237441-406a-4f2e-863d-e6eb5d4bab56", + "id": "01cdcb61-4b03-45b7-8717-d25ffb6478b2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21314,12 +21314,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "32dde7d5-ed93-4805-a045-e220460c2327", + "id": "370765ef-ff1a-4890-93cd-69919009ea24", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21364,7 +21364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19bc84dd-c308-4286-924c-ee8f4643f819", + "id": "89c72d00-b82f-46d3-be65-bcb46ccebdf9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21404,7 +21404,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -21415,7 +21415,7 @@ } }, { - "id": "3f3f9efb-8dcb-4655-aa87-e9a6a659d14c", + "id": "345fb773-d6ef-4729-9453-3dfe19872748", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -21460,7 +21460,7 @@ }, "response": [ { - "id": "3b869841-bc9e-49cb-8e74-cb8694ba5c0f", + "id": "e07dc632-05b8-43e2-8451-78d2a7538f1c", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -21506,7 +21506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7359b6de-bbd4-495b-ade3-88182d91403e", + "id": "29cc1df1-de91-4f98-bfd6-701c51762ec6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21547,12 +21547,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e8355065-c3c6-4488-9134-f63304b11a88", + "id": "9f09c0ef-9f60-4029-94c6-0647512dfbb4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21598,7 +21598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1309c52-7d4e-40f8-be64-d1fc55f61960", + "id": "2a467889-a0c7-454c-acd2-a17b445ce573", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21639,12 +21639,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d51f697a-bbe1-4ad7-867e-ed582d162d08", + "id": "fb062e9a-c883-49cb-9195-1c8de5028906", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21685,12 +21685,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e0bac068-c1e6-41bf-9605-9f411745facd", + "id": "4569879e-92da-420c-988c-2b957e45872d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21736,7 +21736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a994363-a0cd-49f8-b156-bf8d6862c5bd", + "id": "7ebb5509-62fb-4adc-bd2d-57e80bfda795", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21777,7 +21777,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -21788,7 +21788,7 @@ } }, { - "id": "36452178-9469-4d74-8e52-f55e7fb8c7ac", + "id": "1111a536-d3c5-4079-bde0-92a1e974debc", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -21818,7 +21818,7 @@ }, "response": [ { - "id": "c82fd09c-78e6-41d7-942b-42e6a947af6c", + "id": "560fe48d-dfdb-4a7e-8b34-ee5b7baf7ed3", "name": "Campaign Report Configuration", "originalRequest": { "url": { @@ -21862,7 +21862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3fa5471-cc07-46e1-9915-47aa4f209be2", + "id": "ef027908-d563-4081-8b54-0ecb059239ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21901,12 +21901,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ce8ff9b4-f64f-4356-ac6f-6466943c06da", + "id": "8093a2bc-d104-44f8-87f9-a07cc13b2610", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21950,7 +21950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6ba1c7e-beb4-45f5-8bb3-6d3d3f0f8727", + "id": "c5f6a0ad-807f-4afc-b319-dc30d43e8080", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21989,12 +21989,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16dc2d8c-6c6e-4184-a1f2-2ab2e5ffadd0", + "id": "95cc4e88-809e-4009-8fbb-7517830af25b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22038,7 +22038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55fe8747-cbbe-4ca1-b821-6418f7386c1f", + "id": "971702aa-4aa3-4d58-af43-3c9e48ade656", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22077,7 +22077,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -22088,7 +22088,7 @@ } }, { - "id": "6709bc6f-e06e-4582-a5e9-d03e526efdf9", + "id": "9901f740-b6f8-4065-ab03-4e940d2b684b", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -22131,7 +22131,7 @@ }, "response": [ { - "id": "a96eef4f-5e0f-4889-a3c7-9f755ea2f580", + "id": "f607974a-0ec1-4666-ae9f-274fadb7d178", "name": "The persisted Campaign Report Configuration", "originalRequest": { "url": { @@ -22188,7 +22188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa84c1f5-afff-4516-aa3a-9d2dc4d7a6ec", + "id": "bce9c566-03e4-458a-a54f-93b2466db695", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22240,12 +22240,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7951e816-e08f-4895-861d-43a1e8dc1a72", + "id": "c7d218f0-e71e-44f6-8bca-d7da19b835f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22302,7 +22302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdd0d3e5-581a-4b50-86da-f58002f0581e", + "id": "ea81cc78-d5ce-464c-9b25-99f080c37134", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22354,12 +22354,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3063e55e-4856-4a3a-b114-6a0dad00a7a8", + "id": "2a76e5c5-4b35-4d8f-955a-886c19004c5f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22416,7 +22416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63a680df-a119-4549-8e79-0b8d42456045", + "id": "07cf91c7-817c-4629-9225-65b6cd7f7a5c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22468,7 +22468,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -22479,7 +22479,7 @@ } }, { - "id": "a8a4ca69-774a-41e6-9978-73618f2350d6", + "id": "de21db5b-3854-4731-9438-924d35b40ff0", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -22551,7 +22551,7 @@ }, "response": [ { - "id": "18ddcc86-cb03-41e3-b0cd-b3eab9b0b53c", + "id": "e52267d2-a8c8-4243-bce2-131a8c216635", "name": "List of campaign template objects", "originalRequest": { "url": { @@ -22635,12 +22635,12 @@ "value": "application/json" } ], - "body": "[\n {\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\": \"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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\n \"operator\": \"ALL\",\n \"ids\": [\n \"\",\n \"\"\n ]\n },\n {\n \"type\": \"ROLE\",\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\": \"CAMPAIGN\",\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\": \"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\": \"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 },\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\": \"ACTIVE\",\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\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"IDENTITY_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\": \"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\": \"ERROR\",\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\": \"NO_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\": \"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\": \"CERTIFICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"operator\": \"SELECTED\",\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\": \"PASSWORD_POLICY\",\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\": \"REQUEST\",\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\": \"ALL_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\": \"MANAGER\",\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\": \"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\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"query\": \"\",\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"accessConstraints\": [\n {\n \"type\": \"ROLE\",\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\": \"SOD_POLICY\",\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\": \"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\": \"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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e3a4e25-ae4f-4121-bd17-17659f313946", + "id": "6104496b-1840-4cd5-a1da-77de48bdf7f5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22724,12 +22724,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a041065d-6fc0-42d4-ad17-79289dfd6fb6", + "id": "3450bc3e-d4b1-47f3-8f03-e2878859ad2c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22818,7 +22818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b2dc7d5-ea22-4a8b-88b7-1b00ea485a98", + "id": "e70ad96a-e202-4c34-b5ed-3e3e782ea235", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22902,12 +22902,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0fec3ce5-6745-4113-bfe7-6bd47803db17", + "id": "9311975c-f017-4e30-9b8d-86f4e0deac71", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22996,7 +22996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8e87fd8-b1ae-486a-869e-177ba051bb61", + "id": "b59883fc-29d5-48f4-a9a1-4369172786bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23080,7 +23080,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -23091,7 +23091,7 @@ } }, { - "id": "437f2248-8fa1-4287-8426-b3ba3bd4f729", + "id": "f3f4a7b4-c2e4-4348-860c-04f6fc917dae", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -23119,7 +23119,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\": \"PENDING\",\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\": \"TAG\",\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\": \"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\": \"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\": \"REQUEST\",\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\": \"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}", + "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\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"LIFECYCLE_STATE\",\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\": \"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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -23130,7 +23130,7 @@ }, "response": [ { - "id": "fba02fcf-6252-4598-9694-418e48489dc3", + "id": "1f152df1-bb09-4421-a7e4-ade26e2ea140", "name": "Created successfully.", "originalRequest": { "url": { @@ -23164,7 +23164,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\": \"PENDING\",\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\": \"TAG\",\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\": \"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\": \"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\": \"REQUEST\",\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\": \"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}", + "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\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"LIFECYCLE_STATE\",\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\": \"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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -23181,12 +23181,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\": \"PENDING\",\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\": \"TAG\",\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\": \"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\": \"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\": \"REQUEST\",\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\": \"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}", + "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\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"LIFECYCLE_STATE\",\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\": \"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\": \"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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "33d52825-46c4-463b-9d2c-e03a1d0dba3e", + "id": "ca549905-bf1a-45ae-bffc-ca91d0bad95a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23220,7 +23220,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\": \"PENDING\",\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\": \"TAG\",\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\": \"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\": \"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\": \"REQUEST\",\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\": \"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}", + "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\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"LIFECYCLE_STATE\",\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\": \"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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -23237,12 +23237,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "18e34832-ee3f-4cf2-b1e2-8e2efefc7cde", + "id": "76f97a44-de31-4291-926e-396b49b392a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23276,7 +23276,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\": \"PENDING\",\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\": \"TAG\",\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\": \"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\": \"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\": \"REQUEST\",\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\": \"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}", + "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\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"LIFECYCLE_STATE\",\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\": \"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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -23298,7 +23298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "932e7014-24a5-42a3-9a70-54ad82fe46b5", + "id": "cd3c7504-8365-4f8c-bf02-35ebb2b38173", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23332,7 +23332,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\": \"PENDING\",\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\": \"TAG\",\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\": \"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\": \"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\": \"REQUEST\",\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\": \"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}", + "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\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"LIFECYCLE_STATE\",\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\": \"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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -23349,12 +23349,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c15400cb-3599-45f2-a334-631a2cfc74d7", + "id": "35871142-6118-4ce8-821a-a982d9c72cd4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23388,7 +23388,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\": \"PENDING\",\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\": \"TAG\",\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\": \"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\": \"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\": \"REQUEST\",\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\": \"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}", + "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\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"LIFECYCLE_STATE\",\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\": \"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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -23410,7 +23410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10ab63a5-5cea-434c-900a-660b987c4334", + "id": "b92e609f-109e-4ae1-97e0-4a97bcd141c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23444,7 +23444,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\": \"PENDING\",\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\": \"TAG\",\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\": \"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\": \"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\": \"REQUEST\",\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\": \"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}", + "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\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"LIFECYCLE_STATE\",\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\": \"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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -23461,7 +23461,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -23472,7 +23472,7 @@ } }, { - "id": "12a7a41e-6065-4fd5-9675-1c2d36a2aead", + "id": "2833845d-97aa-4c14-adb8-a91421cb72db", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -23509,7 +23509,7 @@ }, "response": [ { - "id": "fe0e5afd-2ca0-4220-89d4-8ed836dd4c5a", + "id": "8550f474-d6db-4ef1-bc57-ef18e4217fda", "name": "The data for the campaign matching the given ID.", "originalRequest": { "url": { @@ -23548,12 +23548,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\": \"PENDING\",\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\": \"TAG\",\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\": \"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\": \"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\": \"REQUEST\",\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\": \"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}", + "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\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"LIFECYCLE_STATE\",\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\": \"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\": \"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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6c537a84-50dc-4a69-82e9-a9639f2bc49d", + "id": "d740a5fc-a9be-4b01-8d12-f92265f981f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23592,12 +23592,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "feec9a79-8672-4786-aaba-99895304f9dd", + "id": "f2150dd1-bbd1-4126-b225-34dec2f6ff9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23641,7 +23641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80170901-e2fb-4e5e-9ba0-49deef6df710", + "id": "42f5d5f3-7bb2-4d73-b8b9-78a94ec1d5dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23680,12 +23680,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86404807-a26e-46a2-a6ff-e1e132f5b8ae", + "id": "e4ccb661-578a-4f22-b18a-c5d3a89b5127", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23724,12 +23724,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a4a9836-c4f9-4a07-85b2-f6c7601435ab", + "id": "475b5c68-2898-4c04-b670-b06028402b46", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23773,7 +23773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09387055-04ce-49fa-80aa-3284c3d49476", + "id": "585ac9c1-16ca-44c4-867a-201f3ec38e65", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23812,7 +23812,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -23823,7 +23823,7 @@ } }, { - "id": "05daff84-563e-48bb-84e5-0cb5a3d589b6", + "id": "a2de714e-5346-477c-8e82-928260bf0e8d", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -23873,7 +23873,7 @@ }, "response": [ { - "id": "775ec8aa-f938-4833-92bf-cf23bbf12304", + "id": "f0f6ca06-9b0d-4004-92ca-185a33119352", "name": "Indicates the PATCH operation succeeded, and returns the template's new representation.", "originalRequest": { "url": { @@ -23925,12 +23925,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\": \"PENDING\",\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\": \"TAG\",\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\": \"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\": \"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\": \"REQUEST\",\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\": \"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}", + "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\": \"PENDING\",\n \"correlatedStatus\": \"CORRELATED\",\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\": \"IDENTITY\",\n \"description\": \"\",\n \"reviewer\": {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"LIFECYCLE_STATE\",\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\": \"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\": \"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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d94ce36d-1b4e-40f0-9f60-c270b15e3029", + "id": "cc611eb3-b04f-4d46-85e7-1b3cd30cffdb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23982,12 +23982,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37e2e2f2-4892-45ef-8b89-a822609765c8", + "id": "eaea93ab-be35-482f-a74a-6c993410477c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24044,7 +24044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81c08df4-fb56-4627-86a6-69c4c008a5f2", + "id": "a7eab3d6-1ef8-41d4-897f-0b1a713d9001", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24096,12 +24096,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92a8f5d5-3dc1-4a18-9e37-5bf5b7d366f5", + "id": "a18cfb27-8e3f-497d-84af-b5a0a752aaa9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24153,12 +24153,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4e86cf6-d35b-4667-95b3-e96498a7b9a3", + "id": "7a0f9d2d-86e2-4346-8bb9-5850189cfff5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24215,7 +24215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eef375d-faf6-4acc-a9c2-d4d102515462", + "id": "2d3739ec-eb75-433e-b9a7-54e7d8c81a16", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24267,7 +24267,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -24278,7 +24278,7 @@ } }, { - "id": "5c12c03e-4ed3-43fe-be72-bea1e2e38240", + "id": "14e0a533-3ee2-4047-b6a4-a5c8528808f3", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -24315,7 +24315,7 @@ }, "response": [ { - "id": "9c9b2df4-268b-4a72-962f-cc4984ee48ee", + "id": "6465e15b-7fab-4388-8aad-de370c3238ea", "name": "The Source was successfully deleted.", "originalRequest": { "url": { @@ -24349,7 +24349,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7e2696c2-eb7a-4154-840a-960c69dab2a7", + "id": "23a54a8c-2d10-456f-b4e8-59f1aed7d20f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24388,12 +24388,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b2ce59f-6f1a-4304-8d83-5936e7c9401a", + "id": "5eac7431-8b8e-4ee5-9f5a-ee2ff55dda65", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24437,7 +24437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44695258-3436-44e3-90b1-1bf59b23cd09", + "id": "bcf9752f-7ba7-4015-8823-5a3beb4027dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24476,12 +24476,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1553cf9-d208-4926-a52e-71850e05221b", + "id": "8cb321a6-a3b0-4ddc-8810-59d4d3e91f69", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24520,12 +24520,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7fe2a455-a44b-4242-b336-a0b82e61dd92", + "id": "2f3e17bf-62c8-4e03-b465-22d63c1ddd8b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24569,7 +24569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "468ce074-bc41-4cca-9cf0-bee338228ee6", + "id": "aef20850-9c8d-44ba-a325-682fca1b7728", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24608,7 +24608,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -24619,7 +24619,7 @@ } }, { - "id": "e02af5cc-fd74-485a-8bf4-e070ba77250f", + "id": "67546939-c49f-4d5d-abcb-f84bdf3149db", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -24657,7 +24657,7 @@ }, "response": [ { - "id": "2cc1c486-fa51-4c9a-a777-79cb1fc5d591", + "id": "53638c1c-84b2-4012-bc47-e048c63c6f17", "name": "Indicates a campaign was successfully generated from this template, and returns a reference to the new campaign.", "originalRequest": { "url": { @@ -24697,12 +24697,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"CAMPAIGN\",\n \"campaignType\": \"SOURCE_OWNER\",\n \"description\": \"\",\n \"correlatedStatus\": \"UNCORRELATED\",\n \"mandatoryCommentRequirement\": \"ALL_DECISIONS\"\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"CAMPAIGN\",\n \"campaignType\": \"MANAGER\",\n \"description\": \"\",\n \"correlatedStatus\": \"CORRELATED\",\n \"mandatoryCommentRequirement\": \"REVOKE_ONLY_DECISIONS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "732efc20-afc4-4b82-ae38-c870e929f536", + "id": "66d63e1b-b4dc-4ff4-ba36-8500b2d23460", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24742,12 +24742,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "72a0b397-f76b-42ac-b891-f66621d958f7", + "id": "4459604b-0602-41d8-86d8-a9bba49c7353", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24792,7 +24792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53c9c388-e794-4f8a-94e0-fc7479b21cae", + "id": "4d160669-fa7f-48d0-9719-2c293d900fa0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24832,12 +24832,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c452da2a-1968-41bd-892e-59f340f8cac2", + "id": "1d902e81-b668-4417-8129-021ec773bccf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24882,7 +24882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c303e82a-3680-4de2-94f0-bbb05bdd9138", + "id": "5e9d4684-9e94-4fff-8d95-f9d0de477150", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24922,7 +24922,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -24933,7 +24933,7 @@ } }, { - "id": "886b5758-4364-4b3d-b7e5-af4a1c39e793", + "id": "e759e439-fbad-441a-b9a0-3f4480f9df5e", "name": "Gets a Campaign Template's Schedule", "request": { "name": "Gets a Campaign Template's Schedule", @@ -24971,7 +24971,7 @@ }, "response": [ { - "id": "4b1dbda4-4d8d-4f8b-a7d6-304081f0d207", + "id": "3d235041-b229-4661-8b35-00cc0dfe69cc", "name": "The current schedule for the campaign template. See the PUT endpoint documentation for more examples.", "originalRequest": { "url": { @@ -25011,12 +25011,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "body": "{\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3fae8560-effc-424c-a555-63cfc2032193", + "id": "8a01dada-19bf-4ed2-95ba-5718a7885953", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25061,7 +25061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cb5e8f9-9c56-4a0a-a011-464167a2e9b1", + "id": "46bd4e19-70bc-489c-bcd6-701d04b5a8a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25101,12 +25101,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1be7db55-36c1-4161-b517-e58f1d6fcb40", + "id": "c133261a-4889-4fb5-9451-ff12f4b2def8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25146,12 +25146,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ef3c521b-4edb-41e5-b60d-26d627528bd3", + "id": "e1701c60-1fbf-4e3f-8ba2-ba3b5cf8d288", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25196,7 +25196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10f0d43c-9e1a-4c2f-93f4-423f5a5aed6b", + "id": "c133f60c-f8e1-4952-905a-909aa552e86b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25236,7 +25236,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -25247,7 +25247,7 @@ } }, { - "id": "e07e50b9-0cb5-4933-bfbe-ef4589eb3a7e", + "id": "dcd4c2c3-739f-49a9-b69b-638004e24b03", "name": "Sets a Campaign Template's Schedule", "request": { "name": "Sets a Campaign Template's Schedule", @@ -25287,7 +25287,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25298,7 +25298,7 @@ }, "response": [ { - "id": "400aac1b-6094-4dee-9d62-d1b18f99583d", + "id": "3cf2a1ca-98a1-4371-8a8d-79075b571ff4", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -25330,7 +25330,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25346,7 +25346,7 @@ "_postman_previewlanguage": "text" }, { - "id": "850b3e6d-bc6f-4fc9-9999-d91437465be5", + "id": "75478a13-6778-4cec-b2f6-8b6a8cf04d86", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25382,7 +25382,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25399,12 +25399,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d4424dc-efb1-47ee-ac62-8ad4b6611929", + "id": "f4afcf49-5d9f-4c7f-b93f-85c43bc1c99e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25440,7 +25440,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25462,7 +25462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a72e506f-1f9f-463a-80e6-b206fc6c5ad4", + "id": "88aab3d2-a67f-4ab8-b503-c2531e181b6c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25498,7 +25498,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25515,12 +25515,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a00525dd-ef88-4028-af14-264339318755", + "id": "88333aeb-d643-4790-857a-f02f00487f66", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25556,7 +25556,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25573,12 +25573,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3f864af5-245f-4caf-98ee-b90a5cdc33ef", + "id": "36c12b85-b503-43f5-bda9-57ce261883e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25614,7 +25614,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25636,7 +25636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd0c31d8-d606-4ca6-9179-9af2de806361", + "id": "717ad214-911f-4a04-a741-32fd27380104", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25672,7 +25672,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"type\": \"WEEKLY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"LIST\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", + "raw": "{\n \"type\": \"DAILY\",\n \"hours\": {\n \"type\": \"RANGE\",\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\": \"RANGE\",\n \"values\": [\n \"\",\n \"\"\n ],\n \"interval\": \"\"\n },\n \"expiration\": \"\",\n \"timeZoneId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -25689,7 +25689,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -25700,7 +25700,7 @@ } }, { - "id": "2cfda52a-3c70-42c1-a5d5-9c5e2dcbc2f6", + "id": "0dcfc3fc-562b-4360-9b36-b529c1324baf", "name": "Deletes a Campaign Template's Schedule", "request": { "name": "Deletes a Campaign Template's Schedule", @@ -25738,7 +25738,7 @@ }, "response": [ { - "id": "03476d63-6d58-4dc6-ba53-fb01875cc314", + "id": "4de1d1d6-15e7-4d14-83b8-98bf8a5d507a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -25773,7 +25773,7 @@ "_postman_previewlanguage": "text" }, { - "id": "235d94f7-cc4e-44ed-9982-8dab457c73f2", + "id": "7c397f51-2ac8-493b-9c74-8000f224e82b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25818,7 +25818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4516dafc-4ec8-4b41-b464-8bbd40edf00f", + "id": "56b07c99-3f33-4a39-995e-1f654770f67f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25858,12 +25858,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d09364cd-4eee-4287-824d-b54a3e472473", + "id": "bd3c7041-5e6f-4b1a-af81-3e6249b396f9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25903,12 +25903,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8fc967e-764d-49bd-b1a2-8188b88230d2", + "id": "dd668e9f-12c2-4081-8ff6-1ae1231e3ba3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25953,7 +25953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b8d3e6e-0941-44e0-a8f9-2e1739aa38c9", + "id": "48460c1e-a39c-4177-972c-563a2ac49baa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25993,7 +25993,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -26010,7 +26010,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": "034d0c92-1cc8-4744-8ff7-f6ea06effb58", + "id": "2ef8cdfe-24e7-4c2c-9e60-6df1eabfbbbe", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -26050,7 +26050,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\": \"TARGET_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26061,7 +26061,7 @@ }, "response": [ { - "id": "c0b566b7-7bd9-482f-a810-c8c53106488a", + "id": "f28752a4-f86d-4fe2-af1d-cf35486a6326", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -26097,7 +26097,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\": \"TARGET_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26114,12 +26114,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b188e780-0942-40ca-ab9d-e5bc62bbf15e", + "id": "ad41d2af-4086-4db0-a88b-994561f6205b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26155,7 +26155,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\": \"TARGET_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26172,12 +26172,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4520c1da-4464-48d7-a600-20c46dde8102", + "id": "d0be7c3e-3a75-42df-a5c5-4c86cd7cffb6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26213,7 +26213,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\": \"TARGET_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26235,7 +26235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77357147-f9ce-4e45-a813-e51caee12232", + "id": "f86aaee9-fa9a-4264-919f-a6d21ad61f05", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26271,7 +26271,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\": \"TARGET_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26288,12 +26288,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a14adbd-dadd-4cea-aef8-a6120cff6549", + "id": "bb99bbc7-766f-47db-a116-3f06a66e2ca2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -26329,7 +26329,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\": \"TARGET_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26346,12 +26346,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a033e629-c75c-4279-9699-8c6b0a913773", + "id": "93a9aa9f-2f8d-47d9-abcb-d4508261a111", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26387,7 +26387,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\": \"TARGET_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26409,7 +26409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46fea3a6-8823-42e0-b5fa-5406e9276c6d", + "id": "f47b2fef-9082-4670-b4a9-77ed3549abc8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26445,7 +26445,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\": \"TARGET_SUMMARY\"\n }\n ],\n \"reassignTo\": \"\",\n \"reason\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -26462,7 +26462,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -26473,7 +26473,7 @@ } }, { - "id": "0e59ffe0-0a70-4631-bcf8-d5d8daeb27bf", + "id": "9aa6bc92-db09-4b3b-80f4-daa65b7433ff", "name": "Certification Task Status", "request": { "name": "Certification Task Status", @@ -26518,7 +26518,7 @@ }, "response": [ { - "id": "50ce055f-b7b3-4e1b-84ba-8962ecadc9df", + "id": "aa22c57a-1e76-4053-9517-5c2087089e94", "name": "A certification task object.", "originalRequest": { "url": { @@ -26559,12 +26559,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e6ed2296-6d8b-47ae-baba-63b8be71f215", + "id": "6b84fe36-f83d-472b-940b-c75fa15572ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26605,12 +26605,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d9ff4134-efac-496c-874f-e2194f46bccd", + "id": "b1ba8afc-aa4c-4357-8af3-603059bb2add", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26656,7 +26656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76ba4052-27c8-46d0-8e77-ce06528d039f", + "id": "3b2f6d93-360c-4931-ae65-febd979187ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26697,12 +26697,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fafd7be2-7108-4fe1-bb2c-ab1f93da83d5", + "id": "ede90420-20ba-4a27-b1dc-b5a98ab63935", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -26743,12 +26743,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "017bfa97-a4fa-4177-9737-2a3e35d6c8f7", + "id": "4ff8fe4a-882f-47a4-936e-1996b9385cf7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26794,7 +26794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55cc739a-bc06-4e4b-8cdd-93f52f5de79c", + "id": "30198375-1f12-408e-9e30-b06539e4c828", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26835,7 +26835,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -26846,7 +26846,7 @@ } }, { - "id": "6665128b-9e72-49a3-85ea-eb48d088f50c", + "id": "39d5908e-4cb3-42bc-91e7-dbca9bd26b8e", "name": "Pending Certification Tasks", "request": { "name": "Pending Certification Tasks", @@ -26884,7 +26884,7 @@ }, "response": [ { - "id": "e1e0d8e1-560c-472a-a546-1c1a1a6be3e2", + "id": "ad772ac0-85b2-4957-bbb7-2af72120d94f", "name": "A list of pending (`QUEUED` or `IN_PROGRESS`) certification task objects.", "originalRequest": { "url": { @@ -26924,12 +26924,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\",\n \"errors\": [\n \"\",\n \"\"\n ]\n },\n {\n \"id\": \"\",\n \"certificationId\": \"\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\",\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\": \"QUEUED\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4308443c-bcfe-45d7-ac74-e509c53dc623", + "id": "85b60144-c4fd-46de-984a-d7fde41f40b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26969,12 +26969,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1992de1-1bc9-429a-a963-875a343a36e2", + "id": "23c5db54-94ce-475e-a9f6-a9b0f04ae7c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27019,7 +27019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47cc829c-e395-4a36-b23a-54458e89c174", + "id": "82964788-ee59-4a57-99a6-47f1e49de2b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27059,12 +27059,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8df5bec1-c258-4440-87c6-6a429ed774d2", + "id": "ac2bec8b-0c3b-4d77-aaf1-231b831b0e82", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27104,12 +27104,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8286fe9d-a259-436b-99d4-412a352aaec0", + "id": "17d75060-1c96-476c-ad82-678e07f77201", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27154,7 +27154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb1a8bd6-15ef-4276-b45f-5169723b77bb", + "id": "4b1d08e9-bcaf-4aff-a2fa-c8e9e9188ea8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27194,7 +27194,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -27205,7 +27205,7 @@ } }, { - "id": "3b9fdd35-99e0-4c30-a3e6-bc6f498db68c", + "id": "19a08555-30c1-4828-81ff-e700aaa5019c", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -27288,7 +27288,7 @@ }, "response": [ { - "id": "c302f6ca-4f8d-4bc6-abb4-0099c64f00e1", + "id": "be46111d-527d-49bf-acfd-e71a0264dcb7", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -27372,7 +27372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7b91ed8-1523-4d12-be90-a2a040858f1d", + "id": "5d5c9946-abb8-4bf7-8ea3-285194387f66", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27451,12 +27451,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76339069-cba8-4cf3-b16d-474b06368292", + "id": "7461553b-8d4e-4de6-8e41-3bd2f56fbebd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27540,7 +27540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51aa65ae-fb3f-4889-b02f-f3c06c0bad67", + "id": "2b7c8b81-1898-4af4-a1e4-9ff909b2a661", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c7143a26-6149-48c0-801e-3096b66f6093", + "id": "cf35739a-1f80-4158-96a3-1bba182198e7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27703,12 +27703,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f36d5952-5272-4171-8de9-6ac5cad46fa6", + "id": "1102cc34-e4db-4806-a365-523dbaf33e20", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27792,7 +27792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f304308d-4238-4c95-80b2-2b38653fcde7", + "id": "f16daaa9-1ad6-40ac-a21d-44c78511f358", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27871,7 +27871,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -27882,7 +27882,7 @@ } }, { - "id": "96071643-d435-4f26-a36f-a27bba8033a4", + "id": "3f0fb8de-700f-4c18-adca-18d8f41053a4", "name": "List of Reviewers for the certification", "request": { "name": "List of Reviewers for the certification", @@ -27966,7 +27966,7 @@ }, "response": [ { - "id": "e8906c97-26aa-44d3-b7e7-23238227dbf1", + "id": "1fb6f3d6-2a8b-44bf-8f5a-e33defabaabe", "name": "A list of reviewers", "originalRequest": { "url": { @@ -28057,7 +28057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ee5cce4-5dd1-4df9-b85e-5045e393a7b1", + "id": "04569238-3e61-463f-8076-ab8a92a42f14", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28143,12 +28143,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "78569165-ebe7-431a-a3be-76a76f6cbcde", + "id": "e036a014-daec-4072-a835-5708f357f6ed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28239,7 +28239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "362ba9cf-94e0-4268-9be3-52de8f619f39", + "id": "e61a18f0-3b16-403d-a46b-58edeeae1488", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28325,12 +28325,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "664cfb26-50c9-4903-a872-991277b99f93", + "id": "15bb395b-d733-4b45-8da8-3cfcb7042edd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28416,12 +28416,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f90194a-d546-41c9-9cd5-6927ea7935ec", + "id": "0cc2f394-7f66-4e36-b970-05b9c1500667", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28512,7 +28512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "345928d0-ad09-45c2-a050-5293eb8d7e78", + "id": "5ec3db9d-bfc6-41db-8e72-580402f2b0b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28598,7 +28598,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -28615,7 +28615,7 @@ "description": "", "item": [ { - "id": "14088919-93a2-44bc-a640-cc8b91b0bc3b", + "id": "487ec059-7eb5-4c8f-a22f-1acaccf93659", "name": "List Connector Rules", "request": { "name": "List Connector Rules", @@ -28644,7 +28644,7 @@ }, "response": [ { - "id": "55ad8ef4-e417-45ff-949d-0ee9dc2efa6a", + "id": "bf807b02-dc44-4c62-ab2b-0fab5537aee1", "name": "A list of connector rules", "originalRequest": { "url": { @@ -28682,12 +28682,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"WebServiceAfterOperationRule\",\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\": \"PeopleSoftHRMSBuildMap\",\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\": \"JDBCOperationProvisioning\",\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": "bfe1fe73-891c-4c5d-b233-34da8202e877", + "id": "711d7624-bddd-45be-b7b3-dc3066fb070a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28725,12 +28725,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f0737609-8a80-40ec-8280-fd98d9f087ff", + "id": "69382469-fbe0-47cc-bee6-e9635cfdf6b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28773,7 +28773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37868000-0218-4184-93e2-60cc9ff36354", + "id": "de4fbfda-dbc8-477a-8743-6764d96764e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28811,12 +28811,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f9da212-47fe-4c6a-8e48-67a6461626f2", + "id": "872a11af-913f-4598-92ae-a449f0b3e0a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28859,7 +28859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f65d007-6fb4-499a-a016-ac361a753fdf", + "id": "391a44d2-35da-451f-833a-6d2cc1054a7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28897,7 +28897,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -28908,7 +28908,7 @@ } }, { - "id": "0a5c8ebe-3dee-460d-b2d3-8b83e1a568d4", + "id": "6aca7f15-4313-401b-84a9-5c6b5ee5b06d", "name": "Create Connector Rule", "request": { "name": "Create Connector Rule", @@ -28939,7 +28939,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"ConnectorAfterCreate\",\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\": \"SapHrManagerRule\",\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", @@ -28950,7 +28950,7 @@ }, "response": [ { - "id": "33a13884-679a-4c91-8478-c95bda298911", + "id": "2513f85a-3a72-4ceb-b099-263e938a0618", "name": "The created connector rule", "originalRequest": { "url": { @@ -28984,7 +28984,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"ConnectorAfterCreate\",\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\": \"SapHrManagerRule\",\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", @@ -29001,12 +29001,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"SAPBuildMap\",\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\": \"WebServiceAfterOperationRule\",\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": "2a3abbcd-c7bd-4c97-a39a-aa8cd135e7dd", + "id": "eb3efc9e-67db-4cb0-b094-f23d1f8efbba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29040,7 +29040,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"ConnectorAfterCreate\",\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\": \"SapHrManagerRule\",\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", @@ -29057,12 +29057,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85d9a114-c422-4ff1-93ea-191f9c24d545", + "id": "0b65177c-a147-40e7-bd86-03c7bad372ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29096,7 +29096,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"ConnectorAfterCreate\",\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\": \"SapHrManagerRule\",\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", @@ -29118,7 +29118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8ac619e-af60-4b04-a790-4d1611a5da8b", + "id": "8ad7af8c-3fa8-46aa-958e-3a493746afba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29152,7 +29152,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"ConnectorAfterCreate\",\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\": \"SapHrManagerRule\",\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", @@ -29169,12 +29169,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad1d74c2-0e5a-4459-a1d4-e6e54b421166", + "id": "0e28dee3-bf18-4511-8844-a7fd4c316a8f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29208,7 +29208,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"ConnectorAfterCreate\",\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\": \"SapHrManagerRule\",\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", @@ -29230,7 +29230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2007def2-60c1-4bf7-b180-a81f108b78f6", + "id": "b7d5efce-e7c7-4b84-b6af-088f7f38820b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29264,7 +29264,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"type\": \"ConnectorAfterCreate\",\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\": \"SapHrManagerRule\",\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", @@ -29281,7 +29281,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29292,7 +29292,7 @@ } }, { - "id": "45682fd5-254a-45b6-b0a2-3c14244943e9", + "id": "3dbc830d-fc8f-473a-81d4-c555b0f03aff", "name": "Connector-Rule by ID", "request": { "name": "Connector-Rule by ID", @@ -29329,7 +29329,7 @@ }, "response": [ { - "id": "e94b961b-35b6-4494-952e-2b7da75d1454", + "id": "e3669a1c-6b1e-4442-b969-bb54c720feb3", "name": "Connector rule with the given ID", "originalRequest": { "url": { @@ -29368,12 +29368,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"SAPBuildMap\",\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\": \"WebServiceAfterOperationRule\",\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": "165b3362-d598-4e3e-b775-a8b3e9b64d2c", + "id": "1107143c-7c46-45d2-be3d-efcfa1f195b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29412,12 +29412,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64491ae7-6db8-4a7c-ba83-56d46abd1f31", + "id": "a78f747b-9c92-4c6c-bc54-4fac150f6f68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29461,7 +29461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb3ad4dc-76d3-4847-ba92-de1f8d5a8f09", + "id": "cc2ff168-58fb-4262-b99d-1dfe01b5d54b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29500,12 +29500,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b467abcb-9272-4a36-b469-9d5cbeefab67", + "id": "385c085d-dcd3-4743-bbbd-8faab38ab76f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29544,12 +29544,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8afc8750-6c81-4777-93cb-fdd199a037a8", + "id": "c0078d32-b883-46eb-831b-00a5bcb85723", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29593,7 +29593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8d0a46b-7346-4eb0-b708-72675e0f01e6", + "id": "b137d518-ce2e-47a7-83ca-4f43b0a68b1a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29632,7 +29632,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29643,7 +29643,7 @@ } }, { - "id": "6c9fc0b7-8b8d-4b60-bfb2-1133101e77c6", + "id": "ffeca610-4207-43fa-b7a5-d88e78abfdef", "name": "Update a Connector Rule", "request": { "name": "Update a Connector Rule", @@ -29682,7 +29682,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -29693,7 +29693,7 @@ }, "response": [ { - "id": "26e05a32-c792-4168-a315-b361ae471943", + "id": "9c2bbc0b-0975-414c-8607-7ade3146c90b", "name": "The updated connector rule", "originalRequest": { "url": { @@ -29728,7 +29728,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -29745,12 +29745,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceCode\": {\n \"version\": \"\",\n \"script\": \"\"\n },\n \"type\": \"SAPBuildMap\",\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\": \"WebServiceAfterOperationRule\",\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": "adbdff49-7578-4aba-88a2-3332952b89d4", + "id": "3d237fb1-6e4d-41fd-bc60-7d3e8797304a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29785,7 +29785,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -29802,12 +29802,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b0f317b8-e12d-43b9-a7e5-5cdf50f59ad3", + "id": "6a9f0fb9-bdd7-4888-94a4-3f3595754527", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29842,7 +29842,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -29864,7 +29864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d8bf981-aab9-4271-a6c5-d7762ea18180", + "id": "dca81d15-0e4b-480d-9a95-cbd58334cf4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29899,7 +29899,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -29916,12 +29916,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b60c6f2-4162-4896-a3cf-46304edebb58", + "id": "0f5e3296-d33a-4897-b160-f4f891762824", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29956,7 +29956,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -29973,12 +29973,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c84b588e-3105-468c-9c9c-749950707ace", + "id": "2d25e7ea-b0d3-4ae4-b244-441587febe7a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30013,7 +30013,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -30035,7 +30035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0c7dec1-2712-4baa-afce-d29b570beb67", + "id": "2eeee32f-3dd5-4012-8f36-b5e798392c4a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30070,7 +30070,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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}", + "raw": "{\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}", "options": { "raw": { "headerFamily": "json", @@ -30087,7 +30087,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30098,7 +30098,7 @@ } }, { - "id": "85df7769-eaaf-46f6-8179-ba2dbb15f30b", + "id": "44366d08-2789-47b0-bef8-9ee7ed1f5102", "name": "Delete a Connector-Rule", "request": { "name": "Delete a Connector-Rule", @@ -30135,7 +30135,7 @@ }, "response": [ { - "id": "bbe727cc-68c5-4bda-a468-746c757176ac", + "id": "ee152e6a-d62b-4607-bfbe-4304ffb2e380", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -30169,7 +30169,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b6546682-cd39-4357-bc6c-77160101d1bb", + "id": "c8388048-fccb-49dc-a750-bdf255247dde", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30208,12 +30208,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d29b7e0-cf5b-4337-83b5-d90baab3aa58", + "id": "3c1fffe4-48c8-4f17-8d38-a0cbfc90462a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30257,7 +30257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02318d42-044d-43cc-bb98-6344a0fd15e4", + "id": "d726ac8c-497d-4415-aa7f-484a5be2da9b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30296,12 +30296,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6446134a-9374-4c74-b058-4f69df01a3a1", + "id": "abaeea96-4f21-426d-b2ab-a7f15af72977", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30340,12 +30340,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdc9e6f6-1469-4bdc-9b29-aa879207756d", + "id": "7d11abf0-9b15-4d03-9539-8d0c6788930a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30389,7 +30389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2eebe1b-3802-4d5e-83b8-79670eed4d0f", + "id": "510a7186-5b0c-432d-995d-45b55c1e4dcd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30428,7 +30428,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30439,7 +30439,7 @@ } }, { - "id": "f99d6231-393f-4cc8-b0d9-67614dff2281", + "id": "77c81f45-a4af-4022-8011-fc7cea38fe0a", "name": "Validate Connector Rule", "request": { "name": "Validate Connector Rule", @@ -30482,7 +30482,7 @@ }, "response": [ { - "id": "e50315f8-9c50-4f63-8518-bec058c4c7b0", + "id": "f989b898-82fb-4533-a1b1-859c4b1a5519", "name": "The status of the code's eligibility as a connector rule", "originalRequest": { "url": { @@ -30539,7 +30539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70b10656-2d9c-462b-92aa-4916654294bf", + "id": "ec88c923-4436-40f3-b4f7-5981154e1984", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30591,12 +30591,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a61addaf-e414-4d24-b4c0-4c5e3757bffa", + "id": "b06353cf-e3a0-4d07-8fe6-dff8da33d096", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30653,7 +30653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8891a47f-3334-4ea3-a495-a2b4da9d7789", + "id": "5ffa5a92-f5ae-4101-b94c-600f7e277438", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30705,12 +30705,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3fc0191a-bca3-4672-80a8-b4659ea7cd0d", + "id": "1704edc1-4c74-4bb4-9603-b6b9a71d6d10", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30767,7 +30767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "001f34fe-c396-4b49-930e-ffc895f75682", + "id": "dd4f0658-9f33-425f-a730-dafe9bf4cdc5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30819,7 +30819,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30836,7 +30836,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": "1e0724da-44d1-49e5-8a58-96f5d4a8caae", + "id": "24154d2c-7a2f-4040-b630-18bfdb6ef8c9", "name": "Gets connector list", "request": { "name": "Gets connector list", @@ -30895,7 +30895,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "nl" } ], "variable": [] @@ -30911,7 +30911,7 @@ }, "response": [ { - "id": "df9d2b72-bf8a-495d-9b81-a3b9d0006a8d", + "id": "c0087dd1-3a33-424e-be80-dfd2b32862d6", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -30965,7 +30965,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "nl" } ], "variable": [] @@ -31000,7 +31000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17290da9-e2d2-4aca-b200-702a78024266", + "id": "fb993539-45fc-4fb6-8260-8ce957cba96b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31054,7 +31054,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "nl" } ], "variable": [] @@ -31084,12 +31084,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "58ac7009-7160-4b7b-9215-99130df5dfd7", + "id": "86cc5996-2399-43ae-97e8-9278290006d6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31143,7 +31143,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "nl" } ], "variable": [] @@ -31178,7 +31178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4dd01ac-2b6b-4f28-9eae-901a86b06ee2", + "id": "689e485a-d72d-4f37-a7ad-357892083bff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31232,7 +31232,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "nl" } ], "variable": [] @@ -31262,12 +31262,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a192729-7b02-43f7-a0e2-ff80be669c99", + "id": "2bafde46-0c44-4747-80f4-09c122264dec", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31321,7 +31321,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "nl" } ], "variable": [] @@ -31351,12 +31351,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e867d473-4e50-42c4-ab92-3a0fa53269c2", + "id": "d61d05b4-05c2-42be-b7ec-37fe9692890d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31410,7 +31410,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "nl" } ], "variable": [] @@ -31445,7 +31445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "118150dd-f60d-410f-88bb-2f6fa7d0719f", + "id": "08954aa0-5ac0-4fe2-a41c-b747c9c662d7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31499,7 +31499,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ru" + "value": "nl" } ], "variable": [] @@ -31529,7 +31529,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -31546,7 +31546,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": "bd2d34ba-05b6-427b-9f9e-29e99f59b0ab", + "id": "ea442764-5a38-4954-862b-96068a5ec258", "name": "Export form definitions by tenant.", "request": { "name": "Export form definitions by tenant.", @@ -31612,7 +31612,7 @@ }, "response": [ { - "id": "046be987-52b4-4dca-ab0e-4fa0eebbc6db", + "id": "0231c21d-3571-40fd-b9fb-14f17ede7dd2", "name": "Returns a list of form definitions by tenant", "originalRequest": { "url": { @@ -31687,12 +31687,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": \"\",\n \"results\": [\n {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"officiaa3d\": {},\n \"elit_6\": {},\n \"amet_dd\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"aliquipe6b\": {},\n \"laborumf0f\": {},\n \"aliquip_765\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"BOOLEAN\"\n },\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\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure4d\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"in_8\": {},\n \"sitbaa\": {},\n \"dolor_02\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"et_a7\": {},\n \"incididuntc\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"ullamco_4\": {},\n \"proident24\": {}\n },\n \"elementType\": \"SELECT\",\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 {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"labore_15c\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"inc\": {},\n \"nostrud_a97\": {},\n \"elit_f5c\": {}\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"elit3\": {},\n \"adipisicing_df3\": {},\n \"proident4aa\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"dolor_b\": {},\n \"nisi_0\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ead8\": {},\n \"nulla_06\": {},\n \"reprehenderit_349\": {},\n \"ex2b1\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"Ut_e77\": {},\n \"aliqua8e\": {}\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 \"ex_8\": {},\n \"non_22e\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"occaecatb\": {},\n \"minimcbd\": {},\n \"commodof9\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\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\": \"ELEMENT\"\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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure68\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"consectetur_67\": {},\n \"eiusmod9f\": {}\n },\n \"effectType\": \"SHOW\"\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\": \"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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"aliquipda\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"voluptate_9_\": {}\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 \"esse8\": {},\n \"aliquip_6\": {},\n \"do_aa\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"magna_d7\": {},\n \"proident_02\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"BOOLEAN\"\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 \"Excepteur3ac\": {},\n \"Lorem_9d\": {},\n \"anim3\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"amet_3\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\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 \"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 \"laboris_1e5\": {},\n \"veniamff\": {},\n \"exercitation_3d\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"reprehenderit_8fc\": {},\n \"consequate_2\": {}\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\": \"WORKFLOW\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1006089-63b3-47f3-a09c-ff4ff7b75e32", + "id": "4a5befb1-16bd-417f-93c8-2f7afe4cd5c8", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -31772,7 +31772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b6f9830-1f3b-4e25-b625-63d5472d9fcf", + "id": "2042372d-eb23-420e-9578-27f38269c422", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -31852,7 +31852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3031bc0-ded9-498b-9644-7fabe3bd9179", + "id": "20a42c9a-26d9-41ee-b5c9-45c3b9b34985", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -31932,7 +31932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15ebd2aa-8840-4836-84a0-a7a775899215", + "id": "47295162-55f0-442d-ab29-5e06df0940a4", "name": "Too many requests", "originalRequest": { "url": { @@ -32012,7 +32012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a7b8b5c-993b-46d1-b4de-8310d046d913", + "id": "7124504c-31e6-4678-ac02-9e0341c42b01", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -32098,7 +32098,7 @@ } }, { - "id": "bcce019f-32b5-4a7a-9ed3-1047923c98c3", + "id": "2c64ca83-d3ca-49b3-bcef-d76b9febca06", "name": "Creates a form definition.", "request": { "name": "Creates a form definition.", @@ -32126,7 +32126,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 \"ad_20\": {},\n \"consectetur_dc3\": {},\n \"sunt6\": {},\n \"magna9c\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"ida\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"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\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure_35d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"sed_dfe\": {},\n \"cillum_984\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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\": \"ELEMENT\"\n },\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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"nostrud_de\": {},\n \"ea_f\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"qui_3_0\": {},\n \"cillum1e0\": {},\n \"Duis76\": {}\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 \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\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 \"Excepteur_1\": {},\n \"nostrudcd\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nisi_3\": {},\n \"elit3\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"STRING\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo9\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"irurea31\": {},\n \"aliquip_ef\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"STRING\"\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 \"formElements\": [\n {\n \"config\": {\n \"fugiat0e8\": {},\n \"dolor1\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"velit_a93\": {},\n \"adipisicing__bb\": {},\n \"proident_15\": {}\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\": \"SOURCE\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32137,7 +32137,7 @@ }, "response": [ { - "id": "8888a946-10e4-467f-aeb1-396fe1f86985", + "id": "dd2887ee-33d7-4327-8435-2ae62d6f76d6", "name": "Returns a new form definition", "originalRequest": { "url": { @@ -32171,7 +32171,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 \"ad_20\": {},\n \"consectetur_dc3\": {},\n \"sunt6\": {},\n \"magna9c\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"ida\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"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\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure_35d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"sed_dfe\": {},\n \"cillum_984\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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\": \"ELEMENT\"\n },\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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"nostrud_de\": {},\n \"ea_f\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"qui_3_0\": {},\n \"cillum1e0\": {},\n \"Duis76\": {}\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 \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\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 \"Excepteur_1\": {},\n \"nostrudcd\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nisi_3\": {},\n \"elit3\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"STRING\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo9\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"irurea31\": {},\n \"aliquip_ef\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"STRING\"\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 \"formElements\": [\n {\n \"config\": {\n \"fugiat0e8\": {},\n \"dolor1\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"velit_a93\": {},\n \"adipisicing__bb\": {},\n \"proident_15\": {}\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\": \"SOURCE\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32188,12 +32188,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"labore9c_\": {},\n \"exercitation_4\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"occaecat4d3\": {},\n \"id30\": {},\n \"deseruntc\": {},\n \"laboref69\": {},\n \"culpa1\": {}\n },\n \"effectType\": \"SHOW\"\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\": \"LIST\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"tempor3\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"deserunt_3\": {},\n \"proidentd2\": {},\n \"dolor878\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"ELEMENT\"\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 \"Ut6\": {},\n \"ullamco_eb8\": {},\n \"minim05\": {},\n \"consequat_e\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"quid\": {}\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\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", + "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrudc5\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"aute9\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"BOOLEAN\"\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 \"effects\": [\n {\n \"config\": {\n \"proident2b\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"officia_d\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ad_de\": {},\n \"occaecatd0\": {},\n \"ut_7fb\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"occaecat_2\": {},\n \"irure_aa6\": {}\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\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56ddc89e-87b7-4b30-815c-ee381d57648b", + "id": "ae693bb0-70ea-445c-a562-49885ca0167d", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -32227,7 +32227,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 \"ad_20\": {},\n \"consectetur_dc3\": {},\n \"sunt6\": {},\n \"magna9c\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"ida\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"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\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure_35d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"sed_dfe\": {},\n \"cillum_984\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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\": \"ELEMENT\"\n },\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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"nostrud_de\": {},\n \"ea_f\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"qui_3_0\": {},\n \"cillum1e0\": {},\n \"Duis76\": {}\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 \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\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 \"Excepteur_1\": {},\n \"nostrudcd\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nisi_3\": {},\n \"elit3\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"STRING\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo9\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"irurea31\": {},\n \"aliquip_ef\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"STRING\"\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 \"formElements\": [\n {\n \"config\": {\n \"fugiat0e8\": {},\n \"dolor1\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"velit_a93\": {},\n \"adipisicing__bb\": {},\n \"proident_15\": {}\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\": \"SOURCE\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32249,7 +32249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d79bb38-d958-4644-a98b-f59d4e33b95f", + "id": "91e81f30-f4a8-4d16-81a6-ff45b301f117", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -32283,7 +32283,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 \"ad_20\": {},\n \"consectetur_dc3\": {},\n \"sunt6\": {},\n \"magna9c\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"ida\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"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\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure_35d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"sed_dfe\": {},\n \"cillum_984\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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\": \"ELEMENT\"\n },\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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"nostrud_de\": {},\n \"ea_f\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"qui_3_0\": {},\n \"cillum1e0\": {},\n \"Duis76\": {}\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 \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\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 \"Excepteur_1\": {},\n \"nostrudcd\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nisi_3\": {},\n \"elit3\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"STRING\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo9\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"irurea31\": {},\n \"aliquip_ef\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"STRING\"\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 \"formElements\": [\n {\n \"config\": {\n \"fugiat0e8\": {},\n \"dolor1\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"velit_a93\": {},\n \"adipisicing__bb\": {},\n \"proident_15\": {}\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\": \"SOURCE\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32305,7 +32305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2b4866e-0b87-4edb-8be7-bcfc53275570", + "id": "2acef4bb-0e15-4aa8-a145-f0b1abc84a0b", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -32339,7 +32339,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 \"ad_20\": {},\n \"consectetur_dc3\": {},\n \"sunt6\": {},\n \"magna9c\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"ida\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"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\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure_35d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"sed_dfe\": {},\n \"cillum_984\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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\": \"ELEMENT\"\n },\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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"nostrud_de\": {},\n \"ea_f\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"qui_3_0\": {},\n \"cillum1e0\": {},\n \"Duis76\": {}\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 \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\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 \"Excepteur_1\": {},\n \"nostrudcd\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nisi_3\": {},\n \"elit3\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"STRING\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo9\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"irurea31\": {},\n \"aliquip_ef\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"STRING\"\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 \"formElements\": [\n {\n \"config\": {\n \"fugiat0e8\": {},\n \"dolor1\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"velit_a93\": {},\n \"adipisicing__bb\": {},\n \"proident_15\": {}\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\": \"SOURCE\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32361,7 +32361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe649262-8135-4099-8141-ea5f9e5f8e81", + "id": "33d0d12e-b83f-40c9-b2f7-2ee2f2a9e329", "name": "Too many requests", "originalRequest": { "url": { @@ -32395,7 +32395,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 \"ad_20\": {},\n \"consectetur_dc3\": {},\n \"sunt6\": {},\n \"magna9c\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"ida\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"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\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure_35d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"sed_dfe\": {},\n \"cillum_984\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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\": \"ELEMENT\"\n },\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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"nostrud_de\": {},\n \"ea_f\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"qui_3_0\": {},\n \"cillum1e0\": {},\n \"Duis76\": {}\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 \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\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 \"Excepteur_1\": {},\n \"nostrudcd\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nisi_3\": {},\n \"elit3\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"STRING\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo9\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"irurea31\": {},\n \"aliquip_ef\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"STRING\"\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 \"formElements\": [\n {\n \"config\": {\n \"fugiat0e8\": {},\n \"dolor1\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"velit_a93\": {},\n \"adipisicing__bb\": {},\n \"proident_15\": {}\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\": \"SOURCE\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32417,7 +32417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03638750-9255-4a6e-be09-226ae110c60f", + "id": "1efe43c7-a027-48fa-8177-2343e4e29a1c", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -32451,7 +32451,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 \"ad_20\": {},\n \"consectetur_dc3\": {},\n \"sunt6\": {},\n \"magna9c\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"ida\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"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\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure_35d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"sed_dfe\": {},\n \"cillum_984\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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\": \"ELEMENT\"\n },\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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"nostrud_de\": {},\n \"ea_f\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"qui_3_0\": {},\n \"cillum1e0\": {},\n \"Duis76\": {}\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 \"usedBy\": [\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"SOURCE\"\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 \"Excepteur_1\": {},\n \"nostrudcd\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nisi_3\": {},\n \"elit3\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"STRING\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"commodo9\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"irurea31\": {},\n \"aliquip_ef\": {}\n },\n \"effectType\": \"REQUIRE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"STRING\"\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 \"formElements\": [\n {\n \"config\": {\n \"fugiat0e8\": {},\n \"dolor1\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"velit_a93\": {},\n \"adipisicing__bb\": {},\n \"proident_15\": {}\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\": \"SOURCE\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -32479,7 +32479,7 @@ } }, { - "id": "06275955-4c11-4653-9d7d-f7b8146b7e2c", + "id": "a7f2e15c-293f-4d9c-b03d-c6166d4c1615", "name": "Return a form definition.", "request": { "name": "Return a form definition.", @@ -32516,7 +32516,7 @@ }, "response": [ { - "id": "99704f58-ccf2-427c-a07b-714a5c92f79b", + "id": "797fe7d1-34d9-440e-ad57-71183c8710f9", "name": "Returns a form definition", "originalRequest": { "url": { @@ -32555,12 +32555,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"labore9c_\": {},\n \"exercitation_4\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"occaecat4d3\": {},\n \"id30\": {},\n \"deseruntc\": {},\n \"laboref69\": {},\n \"culpa1\": {}\n },\n \"effectType\": \"SHOW\"\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\": \"LIST\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"tempor3\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"deserunt_3\": {},\n \"proidentd2\": {},\n \"dolor878\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"ELEMENT\"\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 \"Ut6\": {},\n \"ullamco_eb8\": {},\n \"minim05\": {},\n \"consequat_e\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"quid\": {}\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\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", + "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrudc5\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"aute9\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"BOOLEAN\"\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 \"effects\": [\n {\n \"config\": {\n \"proident2b\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"officia_d\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ad_de\": {},\n \"occaecatd0\": {},\n \"ut_7fb\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"occaecat_2\": {},\n \"irure_aa6\": {}\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\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f246ac1c-6806-4b38-af06-0c4060f5868e", + "id": "0c9c93be-980b-499b-9884-583bb6685eef", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -32604,7 +32604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a252d7a-356f-4910-a7fb-3c5d21bdb41f", + "id": "d78a9dd1-01ba-4172-9c7a-ecddf8ecb22b", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -32648,7 +32648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03e96713-a2ed-4cc2-9ed2-2caaf4e4cf7d", + "id": "06ce83ed-8a44-4d0f-9705-f9a124128178", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -32692,7 +32692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b47c82d-d610-4b5a-8604-56dbb0d9567f", + "id": "3064cea5-8e3d-47c4-8e37-e1c315877dcb", "name": "An error with the item not found", "originalRequest": { "url": { @@ -32736,7 +32736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed38e76a-961c-4a3a-9486-fdc579e5cf18", + "id": "fba8cc2b-cca9-4ddd-82b9-89e8392d6e4e", "name": "Too many requests", "originalRequest": { "url": { @@ -32780,7 +32780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e7d6639-a07d-43a4-83ad-ec75fe492030", + "id": "c0e96392-6dd3-4168-a45a-95a6a78deff1", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -32830,7 +32830,7 @@ } }, { - "id": "dc4b305f-c156-4650-bd38-3ebc8ca2fab1", + "id": "cd5a785b-772e-4bf2-938c-d3bb4e350c33", "name": "Deletes a form definition.", "request": { "name": "Deletes a form definition.", @@ -32867,7 +32867,7 @@ }, "response": [ { - "id": "89f4c931-7c7a-4eed-a14a-79702e672e23", + "id": "9eb95ad4-96dd-4c82-892c-da1f350c795d", "name": "Returns an empty body", "originalRequest": { "url": { @@ -32911,7 +32911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2090a511-7ac7-4951-9e4f-1270b64a8b1e", + "id": "37d536e6-4ada-446b-aaab-56bec9511014", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -32955,7 +32955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "863178bf-8a68-4fac-832c-17451f7dc939", + "id": "d98c9695-b231-4b55-8e9f-8b56770a5a0a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -32999,7 +32999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98f7c1b6-57a2-44b5-99e5-9ce87003f53f", + "id": "c93e9752-679b-49d7-b2ca-1788815a46e2", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -33043,7 +33043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93bcc15e-3b34-44f1-a50b-3fe359e39b7a", + "id": "6e8029d4-977f-424b-8a2c-f5901564353e", "name": "An error with the item not found", "originalRequest": { "url": { @@ -33087,7 +33087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a06039b2-2b45-4fe9-8e36-f31363383533", + "id": "4566bcf9-9da3-4bd0-bfaa-49403d7733ab", "name": "Too many requests", "originalRequest": { "url": { @@ -33131,7 +33131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03febc3a-3de5-47d5-a4ee-fde587632983", + "id": "f12428b4-f139-48c7-843b-681036913170", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -33181,7 +33181,7 @@ } }, { - "id": "8ec7e9d7-71b0-4355-b20a-3f043d716bd1", + "id": "7cb00992-72d1-4981-9e62-dd2584317865", "name": "Patch a form definition.", "request": { "name": "Patch a form definition.", @@ -33220,7 +33220,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33231,7 +33231,7 @@ }, "response": [ { - "id": "1838d008-c404-4000-8ae2-11a19a9062f4", + "id": "d3c06678-d918-4f94-aa4c-4b1e26be467b", "name": "Returns the form definition updated", "originalRequest": { "url": { @@ -33266,7 +33266,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33283,12 +33283,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"labore9c_\": {},\n \"exercitation_4\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"occaecat4d3\": {},\n \"id30\": {},\n \"deseruntc\": {},\n \"laboref69\": {},\n \"culpa1\": {}\n },\n \"effectType\": \"SHOW\"\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\": \"LIST\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"tempor3\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"deserunt_3\": {},\n \"proidentd2\": {},\n \"dolor878\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"ELEMENT\"\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 \"Ut6\": {},\n \"ullamco_eb8\": {},\n \"minim05\": {},\n \"consequat_e\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"quid\": {}\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\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", + "body": "{\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"nostrudc5\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"aute9\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"BOOLEAN\"\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 \"effects\": [\n {\n \"config\": {\n \"proident2b\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"officia_d\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ad_de\": {},\n \"occaecatd0\": {},\n \"ut_7fb\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"occaecat_2\": {},\n \"irure_aa6\": {}\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\": \"SOURCE\"\n },\n {\n \"id\": \"\",\n \"type\": \"WORKFLOW\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c3a814b-1318-46f5-a8be-6aeed71d5f47", + "id": "83b5c9e5-9724-423e-850f-344de94fea00", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -33323,7 +33323,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33345,7 +33345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3949af1-c4e1-43bc-8e16-544158a2e767", + "id": "c0e7e52e-d0c9-4382-83a0-3a68e964797a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -33380,7 +33380,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33402,7 +33402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e23a3d50-ffad-4674-89a4-769480333fe5", + "id": "0d2b6f35-5fdf-4433-99ff-b1c8b8343fe0", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -33437,7 +33437,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33459,7 +33459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5154ab9-d7b6-43ab-bf01-1a2231b50e4b", + "id": "b2f777a6-c259-43ae-a66c-873497bbb759", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -33494,7 +33494,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33516,7 +33516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "653eb738-4990-4f19-87a6-439e676721d6", + "id": "1f15fe99-b8f4-40d0-be65-6b348112709f", "name": "Too many requests", "originalRequest": { "url": { @@ -33551,7 +33551,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33573,7 +33573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d04dfcbf-362c-4899-a3b8-c1e7296722f2", + "id": "f13b07b5-9544-400c-87ec-e143b0efe0c5", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -33608,7 +33608,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -33636,7 +33636,7 @@ } }, { - "id": "1d0841ea-93a7-4d06-a341-cd15bbf93655", + "id": "680b544d-66b1-42d9-9e2d-1dff2d550067", "name": "Preview form definition data source.", "request": { "name": "Preview form definition data source.", @@ -33701,7 +33701,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accountactivities\",\n \"accountactivities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"identities\"\n ],\n \"objectType\": \"ACCESS_PROFILE\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"SEARCH\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33712,7 +33712,7 @@ }, "response": [ { - "id": "4c3deaeb-a9a7-451e-8bac-7418e2f4773a", + "id": "99daab3f-150c-4071-b8c4-a7160754a341", "name": "Returns a preview of a form definition data source", "originalRequest": { "url": { @@ -33776,7 +33776,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accountactivities\",\n \"accountactivities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"identities\"\n ],\n \"objectType\": \"ACCESS_PROFILE\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"SEARCH\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33798,7 +33798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73b9e6bd-f764-4f00-98ff-0ac8df4b0fc4", + "id": "e48f4b74-d252-49f1-9efd-c06d1a5860a5", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -33862,7 +33862,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accountactivities\",\n \"accountactivities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"identities\"\n ],\n \"objectType\": \"ACCESS_PROFILE\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"SEARCH\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33884,7 +33884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "952b020d-0276-4cef-a326-1b19ff2c537b", + "id": "70903091-6425-43c6-89e3-a086bd8d7add", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -33948,7 +33948,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accountactivities\",\n \"accountactivities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"identities\"\n ],\n \"objectType\": \"ACCESS_PROFILE\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"SEARCH\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -33970,7 +33970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1842680-0c5a-48c0-be34-b487322b887e", + "id": "5608687e-fd31-4543-abc2-26d780f4fec4", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -34034,7 +34034,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accountactivities\",\n \"accountactivities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"identities\"\n ],\n \"objectType\": \"ACCESS_PROFILE\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"SEARCH\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34056,7 +34056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e4f095b-4aae-42c4-8b7b-26b0e0df14a8", + "id": "8f2f184b-1062-48a4-b077-fddb2cd187ac", "name": "An error with the item not found", "originalRequest": { "url": { @@ -34120,7 +34120,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accountactivities\",\n \"accountactivities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"identities\"\n ],\n \"objectType\": \"ACCESS_PROFILE\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"SEARCH\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34142,7 +34142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b74293a-d498-49cc-8474-d05210a16bc2", + "id": "53d7c49e-a20d-4df8-89b9-1398a1782854", "name": "Too many requests", "originalRequest": { "url": { @@ -34206,7 +34206,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accountactivities\",\n \"accountactivities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"identities\"\n ],\n \"objectType\": \"ACCESS_PROFILE\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"SEARCH\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34228,7 +34228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b5ae72f-3c34-44ee-b084-9c3088cd5cbf", + "id": "0f0c689a-d641-4f6f-889e-f65569a85409", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -34292,7 +34292,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"accountactivities\",\n \"accountactivities\"\n ],\n \"objectType\": \"SOURCES\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"INTERNAL\"\n }\n}", + "raw": "{\n \"dataSource\": {\n \"config\": {\n \"aggregationBucketField\": \"\",\n \"indices\": [\n \"*\",\n \"identities\"\n ],\n \"objectType\": \"ACCESS_PROFILE\",\n \"query\": \"\"\n },\n \"dataSourceType\": \"SEARCH\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -34320,7 +34320,7 @@ } }, { - "id": "80089539-264c-49d8-b5e7-07712ea1f503", + "id": "867d63de-70a4-4763-8866-5ca5d05560ad", "name": "List form definitions by tenant.", "request": { "name": "List form definitions by tenant.", @@ -34387,7 +34387,7 @@ }, "response": [ { - "id": "9d09415d-3c1f-45f3-a388-a9b6f339a586", + "id": "21f11c6e-2b66-48f6-8ea0-8db2961a4325", "name": "Returns a list of form definition objects by tenant used by SP-Config", "originalRequest": { "url": { @@ -34463,12 +34463,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"non_8\": {},\n \"labore_1_\": {},\n \"reprehenderit_376\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"laborum_ca7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\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\": \"ELEMENT\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecatf82\": {},\n \"ex409\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nulla9\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolore_17\": {},\n \"irure_9\": {},\n \"eiusmodf\": {},\n \"reprehenderit_6\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"reprehenderit1\": {},\n \"sed692\": {},\n \"ut244\": {}\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 \"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 \"ea5_a\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"irure1\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"ELEMENT\"\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 \"sunt_a\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"cupidatat_25\": {},\n \"fugiatbf\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\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\": \"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\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"veniam_7\": {},\n \"nostrud_e\": {},\n \"Ut_2\": {},\n \"in68\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_50\": {},\n \"sit34e\": {}\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\": \"SOURCE\"\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 \"proident_d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"dolor_4\": {},\n \"magnaf\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation7\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"mollit1\": {},\n \"aute1f\": {},\n \"dolore5\": {},\n \"ullamco_3b0\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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 \"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\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"id___\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"aute7\": {},\n \"eiusmod_9f3\": {}\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 \"Lorem_64\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"velit__6\": {},\n \"ipsumcff\": {},\n \"consequat_cb4\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"in_6a\": {},\n \"dolorea4\": {},\n \"sunt_f\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"anim_9af\": {},\n \"pariaturc67\": {},\n \"minim_45\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"ELEMENT\"\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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"qui_bf5\": {},\n \"nullacb\": {},\n \"nostrud_df2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"pariatur_d8\": {},\n \"eu_d29\": {},\n \"ametb3\": {}\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 \"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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "88ca2ec3-087e-4d6b-858f-03c7e2628461", + "id": "87f4cbd2-d574-4c88-a46e-a923069d9d2b", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -34549,7 +34549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8a87b26-489b-45da-aa13-697a4e8b434b", + "id": "f5eac806-6aa0-42cc-95fa-0aed6812594f", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -34630,7 +34630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d26add6-244d-411d-b9b9-e3392416cf0c", + "id": "00aecbb3-5e74-4c33-9576-1a22c78dfc6b", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -34711,7 +34711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70ac1f6d-733a-4558-9b29-ade3ef462436", + "id": "ccf857fc-6d69-4600-8934-36d5615ee77e", "name": "Too many requests", "originalRequest": { "url": { @@ -34792,7 +34792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6209a475-8689-434d-b97b-63b8f0a820df", + "id": "a200d8ac-67a2-4812-a1c4-40773572161d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -34879,7 +34879,7 @@ } }, { - "id": "0276f45c-d573-491b-b442-5ec20ee1ddf8", + "id": "e3ad0094-212b-4617-82d4-b3d73524021a", "name": "Generate JSON Schema dynamically.", "request": { "name": "Generate JSON Schema dynamically.", @@ -34919,7 +34919,7 @@ }, "response": [ { - "id": "b5103306-b6e4-4657-accd-698c13bab9ea", + "id": "05fecd01-fab7-442d-aefa-04894548b503", "name": "Returns a form elements dynamic schema", "originalRequest": { "url": { @@ -34971,12 +34971,12 @@ "value": "application/json" } ], - "body": "{\n \"outputSchema\": {\n \"fugiat41\": {}\n }\n}", + "body": "{\n \"outputSchema\": {\n \"in947\": {}\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0d98e0cf-8bba-4d49-a98e-42c92ee20a11", + "id": "be23c3a1-5d47-41ba-8e77-63c95dc2ed1c", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -35033,7 +35033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffc2df1c-713c-4f0a-8629-231c3e60695a", + "id": "adcc6300-fa17-4c9b-8de6-f4e79061abd3", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -35090,7 +35090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e515cc9-e6b3-4bee-b07f-67677b579ec6", + "id": "2dca997a-407d-4ff1-b258-2ff2544bdd19", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -35147,7 +35147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "318bc790-f2f1-4bca-afd3-d1f8935654bf", + "id": "72e01c56-7d79-4ef4-bf8b-224629fe2af7", "name": "An error with the item not found", "originalRequest": { "url": { @@ -35204,7 +35204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c57c670-190b-4fb4-90e8-dd9cf30e021c", + "id": "0afb7f7a-943a-4602-935b-ee8162737b3b", "name": "Too many requests", "originalRequest": { "url": { @@ -35261,7 +35261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9f9dc7d-fedd-4beb-af64-96cdaafc951d", + "id": "2b882b6b-8195-49d7-87ac-e8d90a536816", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -35324,7 +35324,7 @@ } }, { - "id": "233bedcc-8d59-4903-a94f-c1e919fc081d", + "id": "21104660-f853-495e-b445-7110e8cfd88c", "name": "Import form definitions from export.", "request": { "name": "Import form definitions from export.", @@ -35353,7 +35353,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"non_8\": {},\n \"labore_1_\": {},\n \"reprehenderit_376\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"laborum_ca7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\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\": \"ELEMENT\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecatf82\": {},\n \"ex409\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nulla9\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolore_17\": {},\n \"irure_9\": {},\n \"eiusmodf\": {},\n \"reprehenderit_6\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"reprehenderit1\": {},\n \"sed692\": {},\n \"ut244\": {}\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 \"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 \"ea5_a\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"irure1\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"ELEMENT\"\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 \"sunt_a\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"cupidatat_25\": {},\n \"fugiatbf\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\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\": \"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\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"veniam_7\": {},\n \"nostrud_e\": {},\n \"Ut_2\": {},\n \"in68\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_50\": {},\n \"sit34e\": {}\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\": \"SOURCE\"\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 \"proident_d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"dolor_4\": {},\n \"magnaf\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation7\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"mollit1\": {},\n \"aute1f\": {},\n \"dolore5\": {},\n \"ullamco_3b0\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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 \"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\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"id___\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"aute7\": {},\n \"eiusmod_9f3\": {}\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 \"Lorem_64\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"velit__6\": {},\n \"ipsumcff\": {},\n \"consequat_cb4\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"in_6a\": {},\n \"dolorea4\": {},\n \"sunt_f\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"anim_9af\": {},\n \"pariaturc67\": {},\n \"minim_45\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"ELEMENT\"\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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"qui_bf5\": {},\n \"nullacb\": {},\n \"nostrud_df2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"pariatur_d8\": {},\n \"eu_d29\": {},\n \"ametb3\": {}\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 \"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]", "options": { "raw": { "headerFamily": "json", @@ -35364,7 +35364,7 @@ }, "response": [ { - "id": "291aa60b-3ec3-459e-b998-8c1b2678f853", + "id": "26d490b0-33ce-4272-89f9-7d55534cb68d", "name": "Returns statuses of those form definition objects imported", "originalRequest": { "url": { @@ -35399,7 +35399,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"non_8\": {},\n \"labore_1_\": {},\n \"reprehenderit_376\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"laborum_ca7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\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\": \"ELEMENT\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecatf82\": {},\n \"ex409\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nulla9\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolore_17\": {},\n \"irure_9\": {},\n \"eiusmodf\": {},\n \"reprehenderit_6\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"reprehenderit1\": {},\n \"sed692\": {},\n \"ut244\": {}\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 \"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 \"ea5_a\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"irure1\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"ELEMENT\"\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 \"sunt_a\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"cupidatat_25\": {},\n \"fugiatbf\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\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\": \"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\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"veniam_7\": {},\n \"nostrud_e\": {},\n \"Ut_2\": {},\n \"in68\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_50\": {},\n \"sit34e\": {}\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\": \"SOURCE\"\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 \"proident_d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"dolor_4\": {},\n \"magnaf\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation7\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"mollit1\": {},\n \"aute1f\": {},\n \"dolore5\": {},\n \"ullamco_3b0\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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 \"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\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"id___\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"aute7\": {},\n \"eiusmod_9f3\": {}\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 \"Lorem_64\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"velit__6\": {},\n \"ipsumcff\": {},\n \"consequat_cb4\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"in_6a\": {},\n \"dolorea4\": {},\n \"sunt_f\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"anim_9af\": {},\n \"pariaturc67\": {},\n \"minim_45\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"ELEMENT\"\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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"qui_bf5\": {},\n \"nullacb\": {},\n \"nostrud_df2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"pariatur_d8\": {},\n \"eu_d29\": {},\n \"ametb3\": {}\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 \"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]", "options": { "raw": { "headerFamily": "json", @@ -35416,12 +35416,12 @@ "value": "application/json" } ], - "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"ind\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"Lorem_c\": {},\n \"fugiat_3cf\": {}\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 \"mollit_d\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"ut_9b\": {}\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\": \"ELEMENT\"\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\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecat_5e6\": {},\n \"do1\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"dolor7\": {}\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\": \"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\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"in_7\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"veniam_25\": {},\n \"sedfd\": {}\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 },\n \"self\": \"\",\n \"version\": \"\"\n },\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"id24a\": {},\n \"ut_e5\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"aliquip_9ee\": {},\n \"veniam_b\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"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\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"ad_cf\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"culpa6\": {},\n \"nostrud_e14\": {},\n \"pariatur_e6c\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"STRING\"\n },\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\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ad_5\": {},\n \"proident8\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"minime_a\": {}\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\": \"SOURCE\"\n }\n ]\n },\n \"self\": \"\",\n \"version\": \"\"\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"tempor_2dc\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"velit2e\": {},\n \"Ut42\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"eaf8b\": {},\n \"in_7\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"sunt_4\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"velit_16\": {},\n \"Duis41\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"in_e\": {},\n \"sed_\": {}\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 \"Lorem_9\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"est149\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"STRING_LIST\"\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 \"culpa729\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"laborum6\": {}\n },\n \"effectType\": \"DISABLE\"\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\": \"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\": \"INPUT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"ipsum0c0\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"qui_f7\": {},\n \"quis_6\": {},\n \"in_f\": {}\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\": \"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 \"fugiat_71\": {},\n \"officia_c_\": {},\n \"aliqua4\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"et_57\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"BOOLEAN\"\n },\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 },\n {\n \"effects\": [\n {\n \"config\": {\n \"do_8a_\": {},\n \"nostrud_db\": {},\n \"Loreme\": {},\n \"pariatur53\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"nisi_2\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\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\": \"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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"consequat_5c\": {},\n \"quis_07\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"veniam_d30\": {},\n \"adipisicing_1\": {}\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 \"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 \"infos\": [\n {\n \"detail\": {\n \"in_367\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"aute_6_\": {},\n \"adipisicingf7\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"laborisf_7\": {},\n \"inb\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n },\n {\n \"detail\": {\n \"officiaa3\": {}\n },\n \"key\": \"\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a80e953-2502-4fb7-880a-1302cd50ad90", + "id": "b9811078-d23b-4166-8fa4-683088bf1992", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -35456,7 +35456,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"non_8\": {},\n \"labore_1_\": {},\n \"reprehenderit_376\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"laborum_ca7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\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\": \"ELEMENT\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecatf82\": {},\n \"ex409\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nulla9\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolore_17\": {},\n \"irure_9\": {},\n \"eiusmodf\": {},\n \"reprehenderit_6\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"reprehenderit1\": {},\n \"sed692\": {},\n \"ut244\": {}\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 \"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 \"ea5_a\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"irure1\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"ELEMENT\"\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 \"sunt_a\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"cupidatat_25\": {},\n \"fugiatbf\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\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\": \"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\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"veniam_7\": {},\n \"nostrud_e\": {},\n \"Ut_2\": {},\n \"in68\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_50\": {},\n \"sit34e\": {}\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\": \"SOURCE\"\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 \"proident_d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"dolor_4\": {},\n \"magnaf\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation7\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"mollit1\": {},\n \"aute1f\": {},\n \"dolore5\": {},\n \"ullamco_3b0\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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 \"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\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"id___\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"aute7\": {},\n \"eiusmod_9f3\": {}\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 \"Lorem_64\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"velit__6\": {},\n \"ipsumcff\": {},\n \"consequat_cb4\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"in_6a\": {},\n \"dolorea4\": {},\n \"sunt_f\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"anim_9af\": {},\n \"pariaturc67\": {},\n \"minim_45\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"ELEMENT\"\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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"qui_bf5\": {},\n \"nullacb\": {},\n \"nostrud_df2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"pariatur_d8\": {},\n \"eu_d29\": {},\n \"ametb3\": {}\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 \"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]", "options": { "raw": { "headerFamily": "json", @@ -35478,7 +35478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7f997fa-7477-40f5-b555-e3a66e86354c", + "id": "7a11c9a6-c28f-41ee-81f5-a6662eb795ff", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -35513,7 +35513,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"non_8\": {},\n \"labore_1_\": {},\n \"reprehenderit_376\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"laborum_ca7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\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\": \"ELEMENT\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecatf82\": {},\n \"ex409\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nulla9\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolore_17\": {},\n \"irure_9\": {},\n \"eiusmodf\": {},\n \"reprehenderit_6\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"reprehenderit1\": {},\n \"sed692\": {},\n \"ut244\": {}\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 \"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 \"ea5_a\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"irure1\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"ELEMENT\"\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 \"sunt_a\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"cupidatat_25\": {},\n \"fugiatbf\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\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\": \"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\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"veniam_7\": {},\n \"nostrud_e\": {},\n \"Ut_2\": {},\n \"in68\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_50\": {},\n \"sit34e\": {}\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\": \"SOURCE\"\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 \"proident_d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"dolor_4\": {},\n \"magnaf\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation7\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"mollit1\": {},\n \"aute1f\": {},\n \"dolore5\": {},\n \"ullamco_3b0\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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 \"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\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"id___\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"aute7\": {},\n \"eiusmod_9f3\": {}\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 \"Lorem_64\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"velit__6\": {},\n \"ipsumcff\": {},\n \"consequat_cb4\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"in_6a\": {},\n \"dolorea4\": {},\n \"sunt_f\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"anim_9af\": {},\n \"pariaturc67\": {},\n \"minim_45\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"ELEMENT\"\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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"qui_bf5\": {},\n \"nullacb\": {},\n \"nostrud_df2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"pariatur_d8\": {},\n \"eu_d29\": {},\n \"ametb3\": {}\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 \"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]", "options": { "raw": { "headerFamily": "json", @@ -35535,7 +35535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3a85a8e-3f0c-471c-82c2-01c7067d93e9", + "id": "ad48f801-5abe-4e83-8e7a-7a9752f436c3", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -35570,7 +35570,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"non_8\": {},\n \"labore_1_\": {},\n \"reprehenderit_376\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"laborum_ca7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\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\": \"ELEMENT\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecatf82\": {},\n \"ex409\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nulla9\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolore_17\": {},\n \"irure_9\": {},\n \"eiusmodf\": {},\n \"reprehenderit_6\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"reprehenderit1\": {},\n \"sed692\": {},\n \"ut244\": {}\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 \"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 \"ea5_a\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"irure1\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"ELEMENT\"\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 \"sunt_a\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"cupidatat_25\": {},\n \"fugiatbf\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\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\": \"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\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"veniam_7\": {},\n \"nostrud_e\": {},\n \"Ut_2\": {},\n \"in68\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_50\": {},\n \"sit34e\": {}\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\": \"SOURCE\"\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 \"proident_d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"dolor_4\": {},\n \"magnaf\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation7\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"mollit1\": {},\n \"aute1f\": {},\n \"dolore5\": {},\n \"ullamco_3b0\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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 \"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\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"id___\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"aute7\": {},\n \"eiusmod_9f3\": {}\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 \"Lorem_64\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"velit__6\": {},\n \"ipsumcff\": {},\n \"consequat_cb4\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"in_6a\": {},\n \"dolorea4\": {},\n \"sunt_f\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"anim_9af\": {},\n \"pariaturc67\": {},\n \"minim_45\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"ELEMENT\"\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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"qui_bf5\": {},\n \"nullacb\": {},\n \"nostrud_df2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"pariatur_d8\": {},\n \"eu_d29\": {},\n \"ametb3\": {}\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 \"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]", "options": { "raw": { "headerFamily": "json", @@ -35592,7 +35592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3f25fff-ed8d-4731-b75f-9a5b4244c401", + "id": "6bc1b72b-b1ae-44d0-bfde-294fde6aef8a", "name": "Too many requests", "originalRequest": { "url": { @@ -35627,7 +35627,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"non_8\": {},\n \"labore_1_\": {},\n \"reprehenderit_376\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"laborum_ca7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\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\": \"ELEMENT\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecatf82\": {},\n \"ex409\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nulla9\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolore_17\": {},\n \"irure_9\": {},\n \"eiusmodf\": {},\n \"reprehenderit_6\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"reprehenderit1\": {},\n \"sed692\": {},\n \"ut244\": {}\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 \"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 \"ea5_a\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"irure1\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"ELEMENT\"\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 \"sunt_a\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"cupidatat_25\": {},\n \"fugiatbf\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\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\": \"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\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"veniam_7\": {},\n \"nostrud_e\": {},\n \"Ut_2\": {},\n \"in68\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_50\": {},\n \"sit34e\": {}\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\": \"SOURCE\"\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 \"proident_d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"dolor_4\": {},\n \"magnaf\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation7\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"mollit1\": {},\n \"aute1f\": {},\n \"dolore5\": {},\n \"ullamco_3b0\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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 \"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\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"id___\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"aute7\": {},\n \"eiusmod_9f3\": {}\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 \"Lorem_64\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"velit__6\": {},\n \"ipsumcff\": {},\n \"consequat_cb4\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"in_6a\": {},\n \"dolorea4\": {},\n \"sunt_f\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"anim_9af\": {},\n \"pariaturc67\": {},\n \"minim_45\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"ELEMENT\"\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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"qui_bf5\": {},\n \"nullacb\": {},\n \"nostrud_df2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"pariatur_d8\": {},\n \"eu_d29\": {},\n \"ametb3\": {}\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 \"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]", "options": { "raw": { "headerFamily": "json", @@ -35649,7 +35649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6619a7eb-2d45-4708-98a7-c475097b7214", + "id": "9600dbd6-937c-4e30-91b4-80c92b22b497", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -35684,7 +35684,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"object\": {\n \"created\": \"\",\n \"description\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"non_8\": {},\n \"labore_1_\": {},\n \"reprehenderit_376\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"laborum_ca7\": {}\n },\n \"effectType\": \"OPTIONAL\"\n }\n ],\n \"ruleOperator\": \"AND\",\n \"rules\": [\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\": \"ELEMENT\"\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\": \"BOOLEAN\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecatf82\": {},\n \"ex409\": {}\n },\n \"effectType\": \"SHOW\"\n },\n {\n \"config\": {\n \"nulla9\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"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 }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"dolore_17\": {},\n \"irure_9\": {},\n \"eiusmodf\": {},\n \"reprehenderit_6\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"reprehenderit1\": {},\n \"sed692\": {},\n \"ut244\": {}\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 \"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 \"ea5_a\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"irure1\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n }\n ],\n \"ruleOperator\": \"OR\",\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\": \"ELEMENT\"\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 \"sunt_a\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"cupidatat_25\": {},\n \"fugiatbf\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\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\": \"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\": \"STRING\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"veniam_7\": {},\n \"nostrud_e\": {},\n \"Ut_2\": {},\n \"in68\": {}\n },\n \"elementType\": \"PHONE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"in_50\": {},\n \"sit34e\": {}\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\": \"SOURCE\"\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 \"proident_d\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"dolor_4\": {},\n \"magnaf\": {}\n },\n \"effectType\": \"ENABLE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"exercitation7\": {}\n },\n \"effectType\": \"DISABLE\"\n },\n {\n \"config\": {\n \"mollit1\": {},\n \"aute1f\": {},\n \"dolore5\": {},\n \"ullamco_3b0\": {}\n },\n \"effectType\": \"DISABLE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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 \"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\": \"LIST\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"id___\": {}\n },\n \"elementType\": \"SELECT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"aute7\": {},\n \"eiusmod_9f3\": {}\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 \"Lorem_64\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"velit__6\": {},\n \"ipsumcff\": {},\n \"consequat_cb4\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"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\": \"INPUT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"in_6a\": {},\n \"dolorea4\": {},\n \"sunt_f\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"anim_9af\": {},\n \"pariaturc67\": {},\n \"minim_45\": {}\n },\n \"effectType\": \"HIDE\"\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\": \"ELEMENT\"\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\": \"ELEMENT\"\n }\n ]\n }\n ],\n \"formElements\": [\n {\n \"config\": {\n \"qui_bf5\": {},\n \"nullacb\": {},\n \"nostrud_df2\": {}\n },\n \"elementType\": \"EMAIL\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"pariatur_d8\": {},\n \"eu_d29\": {},\n \"ametb3\": {}\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 \"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]", "options": { "raw": { "headerFamily": "json", @@ -35712,7 +35712,7 @@ } }, { - "id": "0598b6c8-f50f-41e6-ae82-7a2154dc9560", + "id": "9a1016ec-fd8f-486f-bad0-367654b70ee9", "name": "List form instances by tenant.", "request": { "name": "List form instances by tenant.", @@ -35741,7 +35741,7 @@ }, "response": [ { - "id": "9fb80106-832c-45a1-99d1-db03933394c1", + "id": "755a5e87-3bac-4c85-87fa-522777c4d259", "name": "Returns a list of form instances by tenant", "originalRequest": { "url": { @@ -35779,12 +35779,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 \"et_50\": {},\n \"dolore_08\": {},\n \"laborum_83d\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"veniam__\": {}\n },\n \"effectType\": \"HIDE\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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 \"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 },\n {\n \"effects\": [\n {\n \"config\": {\n \"fugiat4a\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"inc\": {}\n },\n \"effectType\": \"HIDE\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"ELEMENT\"\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 \"formData\": {\n \"magna2\": {},\n \"nostrud_097\": {},\n \"esse36\": {},\n \"nisi1b\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"eiusmod6c\": {}\n },\n \"elementType\": \"SECTION\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"ad_0\": {}\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 \"Ut_6\": {},\n \"labore_7\": {}\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\": \"IN_PROGRESS\"\n },\n {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"officia_b5\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"consequat1\": {},\n \"exercitation_2_\": {},\n \"dolorb\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"LIST\"\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\": \"ELEMENT\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure_4\": {},\n \"in_ab6\": {},\n \"exercitation_06\": {}\n },\n \"effectType\": \"SUBMIT_MESSAGE\"\n },\n {\n \"config\": {\n \"consectetur70\": {},\n \"sint__2\": {},\n \"deserunt_e\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"OR\",\n \"rules\": [\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 \"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 \"formData\": {\n \"deseruntd19\": {},\n \"amet_200\": {},\n \"sint_2\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"magna24c\": {}\n },\n \"elementType\": \"COLUMNS\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"do13\": {}\n },\n \"elementType\": \"SECTION\",\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_b\": {}\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}", + "body": "{\n \"count\": \"\",\n \"results\": [\n {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"laboris45\": {},\n \"incididunt_582\": {},\n \"exercitation_ad8\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\n },\n {\n \"config\": {\n \"proidentd1\": {},\n \"ut_2\": {}\n },\n \"effectType\": \"SUBMIT_NOTIFICATION\"\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\": \"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 \"Excepteur6d0\": {},\n \"dolore__\": {},\n \"fugiat_41\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"velit_10\": {}\n },\n \"effectType\": \"SHOW\"\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\": \"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\": \"INPUT\"\n }\n ]\n }\n ],\n \"formData\": {\n \"sunt12\": {},\n \"voluptate_41\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"dolorf\": {},\n \"cillum_aa1\": {}\n },\n \"elementType\": \"HIDDEN\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"mollit_3\": {},\n \"proident1e\": {}\n },\n \"elementType\": \"COLUMNS\",\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 \"sunt_7d5\": {}\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\": \"CANCELLED\"\n },\n {\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"inca\": {},\n \"Ute9\": {}\n },\n \"effectType\": \"OPTIONAL\"\n },\n {\n \"config\": {\n \"laborum_c9\": {},\n \"dolore_6c\": {},\n \"in4d\": {}\n },\n \"effectType\": \"ENABLE\"\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\": \"INPUT\"\n },\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 },\n {\n \"effects\": [\n {\n \"config\": {\n \"aliqua_a9\": {},\n \"dolore_d36\": {},\n \"aliquipa0\": {}\n },\n \"effectType\": \"REQUIRE\"\n },\n {\n \"config\": {\n \"aliqua_f95\": {},\n \"sunt_2a\": {}\n },\n \"effectType\": \"SET_DEFAULT_VALUE\"\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\": \"STRING_LIST\"\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 \"formData\": {\n \"ut97c\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"enim_0\": {},\n \"ut64\": {},\n \"culpaf9\": {}\n },\n \"elementType\": \"TEXTAREA\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"ut67\": {},\n \"qui_2de\": {}\n },\n \"elementType\": \"SECTION\",\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 \"consecteturcb4\": {},\n \"in_ff\": {},\n \"pariatur_f04\": {},\n \"aute_9f\": {}\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a6598c7a-d6d6-4e71-aa61-4473fad056b3", + "id": "30a64fbf-f3ee-4bcc-acf5-0cad326c8820", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -35827,7 +35827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "046ade66-8bdf-4890-b0f5-ec5f0c2b8dc1", + "id": "93720ebc-4840-41de-b419-691e437c0809", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -35870,7 +35870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaa8a2e0-b083-4c34-bd89-b639cc93d59d", + "id": "b0c5d771-9f08-453d-9897-0201327fa473", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -35913,7 +35913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a43cf8f7-57e2-4313-91ba-ab884b417666", + "id": "80445dc3-b8c0-4c9b-bccb-180a9cba35b7", "name": "Too many requests", "originalRequest": { "url": { @@ -35956,7 +35956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb229f66-502e-4f7e-afb9-4d50110359c6", + "id": "fa6dd036-4c71-4596-b037-b3268405f27e", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36005,7 +36005,7 @@ } }, { - "id": "75678172-05fc-4ea0-8720-1f7b1159fdb4", + "id": "2f86b96e-faad-4451-a6d7-2fb30d843112", "name": "Creates a form instance.", "request": { "name": "Creates a form instance.", @@ -36033,7 +36033,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 \"irurec8c\": {},\n \"irure6\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\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\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"dolor_df1\": {},\n \"dolor_a\": {},\n \"adipisicingf\": {},\n \"elit58\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36044,7 +36044,7 @@ }, "response": [ { - "id": "b9282ca6-f252-4373-8c25-71ad0f8509ec", + "id": "6cdd9169-8d8f-4b03-897e-741c50a396ea", "name": "Returns a new form instance", "originalRequest": { "url": { @@ -36078,7 +36078,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 \"irurec8c\": {},\n \"irure6\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\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\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"dolor_df1\": {},\n \"dolor_a\": {},\n \"adipisicingf\": {},\n \"elit58\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36095,12 +36095,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"amet_76\": {},\n \"dolor_dc5\": {},\n \"suntccc\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"fugiat__\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"ELEMENT\"\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\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure3f2\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"sunt09_\": {},\n \"nisi11\": {}\n },\n \"effectType\": \"SHOW\"\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\": \"ELEMENT\"\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\": \"INPUT\"\n }\n ]\n }\n ],\n \"formData\": {\n \"anim_0e6\": {},\n \"amet_753\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"reprehenderit_7\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"dolore_9\": {},\n \"magna_c34\": {}\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 \"ad_7\": {},\n \"elit7fb\": {}\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\": \"CANCELLED\"\n}", + "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"dolore_80\": {},\n \"culpa_1\": {},\n \"cupidatat00c\": {},\n \"officia_0f1\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"irure_3d1\": {},\n \"in_52\": {},\n \"aliquip_7\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecatc\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"laboris_a7\": {},\n \"eu__be\": {},\n \"ut_21\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"ELEMENT\"\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\": \"STRING\"\n }\n ]\n }\n ],\n \"formData\": {\n \"amet_5\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"labore_a\": {}\n },\n \"elementType\": \"TEXT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"irure_83f\": {},\n \"ipsum51\": {},\n \"inbc\": {}\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 \"voluptate9\": {}\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\": \"IN_PROGRESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d476671-cf09-4e7f-98d2-a1a34f0158ce", + "id": "f9d06c45-6f9c-4ac3-8f7f-05ce0c5600a3", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36134,7 +36134,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 \"irurec8c\": {},\n \"irure6\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\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\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"dolor_df1\": {},\n \"dolor_a\": {},\n \"adipisicingf\": {},\n \"elit58\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36156,7 +36156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03912cc8-bc96-4276-ae7c-9cda4980d1b9", + "id": "373701ca-e2e3-4093-9111-faa75ccaf32d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36190,7 +36190,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 \"irurec8c\": {},\n \"irure6\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\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\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"dolor_df1\": {},\n \"dolor_a\": {},\n \"adipisicingf\": {},\n \"elit58\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36212,7 +36212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1845098-6137-4f0d-862b-ae109eb5aa0c", + "id": "d3c98757-f85c-4130-82ce-cf7c51ba5a0c", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36246,7 +36246,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 \"irurec8c\": {},\n \"irure6\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\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\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"dolor_df1\": {},\n \"dolor_a\": {},\n \"adipisicingf\": {},\n \"elit58\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36268,7 +36268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acbac137-f264-4f41-8167-d8474cb4f9df", + "id": "81b0c9dd-4f3c-4138-ad3c-140ab72c563e", "name": "Too many requests", "originalRequest": { "url": { @@ -36302,7 +36302,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 \"irurec8c\": {},\n \"irure6\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\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\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"dolor_df1\": {},\n \"dolor_a\": {},\n \"adipisicingf\": {},\n \"elit58\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36324,7 +36324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3bfe0fd-d72e-47e3-80a3-86a65a329dcb", + "id": "8d15ffd0-e3bf-4ef2-af97-c88b4d03e302", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36358,7 +36358,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 \"irurec8c\": {},\n \"irure6\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"CANCELLED\",\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\": \"SOURCE\"\n },\n \"formDefinitionId\": \"\",\n \"formInput\": {\n \"dolor_df1\": {},\n \"dolor_a\": {},\n \"adipisicingf\": {},\n \"elit58\": {}\n },\n \"standAloneForm\": false,\n \"state\": \"ASSIGNED\",\n \"ttl\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -36386,7 +36386,7 @@ } }, { - "id": "9d80f90e-a432-4e7c-b118-772167ac9953", + "id": "dcd76fc1-c4c3-48c6-b516-1f95f2d989a2", "name": "Returns a form instance.", "request": { "name": "Returns a form instance.", @@ -36423,7 +36423,7 @@ }, "response": [ { - "id": "19283967-0a1a-480f-ac48-71b80ad0f7e5", + "id": "7b34b65d-9a89-4b7c-b43c-32e2a313601a", "name": "Returns a form instance by its key", "originalRequest": { "url": { @@ -36462,12 +36462,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"amet_76\": {},\n \"dolor_dc5\": {},\n \"suntccc\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"fugiat__\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"ELEMENT\"\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\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure3f2\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"sunt09_\": {},\n \"nisi11\": {}\n },\n \"effectType\": \"SHOW\"\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\": \"ELEMENT\"\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\": \"INPUT\"\n }\n ]\n }\n ],\n \"formData\": {\n \"anim_0e6\": {},\n \"amet_753\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"reprehenderit_7\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"dolore_9\": {},\n \"magna_c34\": {}\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 \"ad_7\": {},\n \"elit7fb\": {}\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\": \"CANCELLED\"\n}", + "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"dolore_80\": {},\n \"culpa_1\": {},\n \"cupidatat00c\": {},\n \"officia_0f1\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"irure_3d1\": {},\n \"in_52\": {},\n \"aliquip_7\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecatc\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"laboris_a7\": {},\n \"eu__be\": {},\n \"ut_21\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"ELEMENT\"\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\": \"STRING\"\n }\n ]\n }\n ],\n \"formData\": {\n \"amet_5\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"labore_a\": {}\n },\n \"elementType\": \"TEXT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"irure_83f\": {},\n \"ipsum51\": {},\n \"inbc\": {}\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 \"voluptate9\": {}\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\": \"IN_PROGRESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d161809b-9ab8-41fa-9125-ba090050e1a6", + "id": "39fcd4e0-5deb-4ba9-93c7-152dacd80b11", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36511,7 +36511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "499c3f0b-8868-411c-8349-770ddf16b7ed", + "id": "c46a19bb-24f5-4154-b3c1-0c86df03c4c2", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36555,7 +36555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c7c33fc-b2f8-4fda-9150-531b676221ac", + "id": "0b636954-1aa4-42c3-b30e-7b1c6ffda5ef", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36599,7 +36599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69f0191f-3c00-4e9e-9b6f-9981defd7e9e", + "id": "7a7371e2-ab59-4f2d-a0cd-e3eae9565fa7", "name": "An error with the item not found", "originalRequest": { "url": { @@ -36643,7 +36643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c896995-0b8a-4e20-bfc7-001fa38137f1", + "id": "c3cb2f5f-b05c-4137-b29c-cb7da3226126", "name": "Too many requests", "originalRequest": { "url": { @@ -36687,7 +36687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32943110-90b0-4aea-b880-0f3a2803406a", + "id": "4ed5514a-80d5-4279-aa7b-5690040acb60", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36737,7 +36737,7 @@ } }, { - "id": "18d0c351-b649-4d9b-97bc-ec047950969d", + "id": "dd25d37c-1562-4b3e-ac8d-5ba3e516315f", "name": "Patch a form instance.", "request": { "name": "Patch a form instance.", @@ -36776,7 +36776,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36787,7 +36787,7 @@ }, "response": [ { - "id": "a8613d37-090c-4759-b2d0-174c5ca55d22", + "id": "b113adc3-24c2-47cd-aa34-38c46b9c7a22", "name": "Returns the form instance updated", "originalRequest": { "url": { @@ -36822,7 +36822,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36839,12 +36839,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"SOURCE\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"amet_76\": {},\n \"dolor_dc5\": {},\n \"suntccc\": {}\n },\n \"effectType\": \"HIDE\"\n },\n {\n \"config\": {\n \"fugiat__\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"ELEMENT\"\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\": \"LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"irure3f2\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"sunt09_\": {},\n \"nisi11\": {}\n },\n \"effectType\": \"SHOW\"\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\": \"ELEMENT\"\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\": \"INPUT\"\n }\n ]\n }\n ],\n \"formData\": {\n \"anim_0e6\": {},\n \"amet_753\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"reprehenderit_7\": {}\n },\n \"elementType\": \"TOGGLE\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"dolore_9\": {},\n \"magna_c34\": {}\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 \"ad_7\": {},\n \"elit7fb\": {}\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\": \"CANCELLED\"\n}", + "body": "{\n \"created\": \"\",\n \"createdBy\": {\n \"id\": \"\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"\",\n \"formConditions\": [\n {\n \"effects\": [\n {\n \"config\": {\n \"dolore_80\": {},\n \"culpa_1\": {},\n \"cupidatat00c\": {},\n \"officia_0f1\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"irure_3d1\": {},\n \"in_52\": {},\n \"aliquip_7\": {}\n },\n \"effectType\": \"SHOW\"\n }\n ],\n \"ruleOperator\": \"AND\",\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\": \"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\": \"STRING_LIST\"\n }\n ]\n },\n {\n \"effects\": [\n {\n \"config\": {\n \"occaecatc\": {}\n },\n \"effectType\": \"ENABLE\"\n },\n {\n \"config\": {\n \"laboris_a7\": {},\n \"eu__be\": {},\n \"ut_21\": {}\n },\n \"effectType\": \"REQUIRE\"\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\": \"ELEMENT\"\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\": \"STRING\"\n }\n ]\n }\n ],\n \"formData\": {\n \"amet_5\": {}\n },\n \"formDefinitionId\": \"\",\n \"formElements\": [\n {\n \"config\": {\n \"labore_a\": {}\n },\n \"elementType\": \"TEXT\",\n \"id\": \"\",\n \"key\": \"\",\n \"validations\": {}\n },\n {\n \"config\": {\n \"irure_83f\": {},\n \"ipsum51\": {},\n \"inbc\": {}\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 \"voluptate9\": {}\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\": \"IN_PROGRESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b773931-fd56-40e0-b871-c70a461137d4", + "id": "8173e286-587a-4032-9905-98fa89e687f1", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36879,7 +36879,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36901,7 +36901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c15c6a6-9190-481f-8f74-1120d8ebf654", + "id": "1e35054b-abca-4bd6-aadf-faac791ac399", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36936,7 +36936,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -36958,7 +36958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9034182-62b2-4df9-a935-4e31c1e5b447", + "id": "fbab311b-ea09-498d-b610-d3d84f06d9f6", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36993,7 +36993,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37015,7 +37015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53532d11-b4cc-4b16-8deb-5b189179bf9e", + "id": "62ca2d1e-2ba5-4d0a-960f-3fd4762c3049", "name": "An error with the item not found", "originalRequest": { "url": { @@ -37050,7 +37050,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37072,7 +37072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b37c60bd-fe0d-4b03-b24f-19e0a942d165", + "id": "da56f0a6-edf4-4f1c-b78d-c03b50c48505", "name": "An error with the request property conflicts with stored", "originalRequest": { "url": { @@ -37107,7 +37107,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37129,7 +37129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7456b9db-7683-482f-81c3-00e003340469", + "id": "5d4cd91c-3936-415b-b576-9572b83217ed", "name": "Too many requests", "originalRequest": { "url": { @@ -37164,7 +37164,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37186,7 +37186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bd05fa1-e351-4e5d-bc63-56080ba42db9", + "id": "8a35d929-1537-46ab-8d08-e306b0a24f51", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -37221,7 +37221,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"minim0\": {},\n \"nulla_10\": {},\n \"quise\": {}\n },\n {\n \"do175\": {},\n \"fugiat_8b0\": {}\n }\n]", + "raw": "[\n {\n \"ullamco_17\": {},\n \"commodo_f2_\": {},\n \"in_1\": {}\n },\n {\n \"qui_48\": {}\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -37249,7 +37249,7 @@ } }, { - "id": "9ceddb8f-aeb6-4f81-9d57-ac0f81bdb6a5", + "id": "2a710bad-44d6-4f40-b954-a05aabf72814", "name": "Retrieves dynamic data by element.", "request": { "name": "Retrieves dynamic data by element.", @@ -37313,7 +37313,7 @@ }, "response": [ { - "id": "f9165c96-12f4-496b-972b-500213038bba", + "id": "7b122dec-65df-4f33-92d7-380bfd1110bc", "name": "Retrieves dynamic data to aid in correctly completing a valid form by form element ID from data source configuration", "originalRequest": { "url": { @@ -37378,7 +37378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e98a4748-68c8-4891-81ab-24dba0f79e63", + "id": "63d16578-0206-46d8-8953-5f6634141bc2", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37443,7 +37443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7346561d-5875-4615-96e7-8e58257d3fdb", + "id": "42fdf3ee-a297-4066-a578-ba4e3060c9e7", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37508,7 +37508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9afe25c-1015-40e4-b8a4-bb4d1dd4b247", + "id": "8b93394f-7353-4709-9d53-5e03b8a78308", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37573,7 +37573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a30f56f-2a4b-4bb5-b512-8dc9a6b355de", + "id": "9bde5a9b-f2fb-4de4-bb44-82998f20ab7a", "name": "An error with the item not found", "originalRequest": { "url": { @@ -37638,7 +37638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "980d9e72-9f48-476a-9a3e-ed7e34c05faa", + "id": "504fb6be-6f4f-4e18-8f30-5dd628a69ba9", "name": "Too many requests", "originalRequest": { "url": { @@ -37703,7 +37703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "577cf42c-0f28-4311-ae94-88f6f7f889b5", + "id": "970a0736-43a4-4410-9f76-1a8dd073d9ce", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -37774,7 +37774,7 @@ } }, { - "id": "af948333-e535-48eb-bebe-64fccc2d38c7", + "id": "b6c4b3c6-4aaf-4272-8667-034e84c7bcbf", "name": "List predefined select options.", "request": { "name": "List predefined select options.", @@ -37804,7 +37804,7 @@ }, "response": [ { - "id": "4b2f422f-44a1-4e07-b796-692c0c984f43", + "id": "7a6079e8-4714-427c-b105-b0714d021a88", "name": "Returns a list of available predefined select options", "originalRequest": { "url": { @@ -37848,7 +37848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25c23b18-5fed-414b-8e89-d9c4c1eb8da1", + "id": "918fce96-86f6-42be-82b4-90bf89bcff21", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37892,7 +37892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33708d03-79d8-41f1-94de-232cee2e8a28", + "id": "4257b8e9-0ae0-4193-8249-d8218096f043", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37936,7 +37936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c2c94c8-0c9b-45c5-b555-716e04d26841", + "id": "d7c6171d-5403-4803-8ca0-164ec71c0c1e", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37980,7 +37980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c042e8b-0c03-49c9-a2c5-3c15658c64bf", + "id": "aecee8ea-b293-4450-beb6-cc6f698ad4fa", "name": "Too many requests", "originalRequest": { "url": { @@ -38024,7 +38024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3835de25-1cdc-4d42-a3d0-63c2e86a3b0a", + "id": "70676e1f-9d97-40f4-a725-05bc0f462e54", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -38080,7 +38080,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": "f15e0af4-1fd4-415f-9322-26cccb629fe9", + "id": "4e89c133-b2db-4ae5-829d-0babd9f1c483", "name": "Create Custom Password Instructions", "request": { "name": "Create Custom Password Instructions", @@ -38111,7 +38111,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"mfa:enter-code\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"unlock-account:enter-username\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -38122,7 +38122,7 @@ }, "response": [ { - "id": "ee2b34c7-4545-4cbf-9455-303a2b2b60f0", + "id": "19b25bcc-8fc5-4481-a4d7-72327c2f6d6b", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -38156,7 +38156,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"mfa:enter-code\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"unlock-account:enter-username\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -38173,12 +38173,12 @@ "value": "application/json" } ], - "body": "{\n \"pageId\": \"mfa:enter-code\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "body": "{\n \"pageId\": \"unlock-account:enter-username\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f91e004-a5cd-40d4-8c75-58377667ce36", + "id": "689132b8-5d6c-4a84-8843-8a1a6767670e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38212,7 +38212,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"mfa:enter-code\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"unlock-account:enter-username\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -38229,12 +38229,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b32c5615-90d3-4291-b932-3bce68a7ff52", + "id": "e77af00e-c6d0-45c8-be25-9f9b802e72b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38268,7 +38268,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"mfa:enter-code\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"unlock-account:enter-username\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -38285,12 +38285,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b19a6177-f04e-40ec-a556-dd26ac50ec5e", + "id": "04fad181-488d-49bf-9f94-cd054deff186", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38324,7 +38324,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"pageId\": \"mfa:enter-code\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "raw": "{\n \"pageId\": \"unlock-account:enter-username\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -38341,7 +38341,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38352,7 +38352,7 @@ } }, { - "id": "d5624cd9-bdd3-4855-9e95-2f02b8b4ca3d", + "id": "a1973006-8b86-4145-9a9f-110d408f4659", "name": "Get Custom Password Instructions by Page ID", "request": { "name": "Get Custom Password Instructions by Page ID", @@ -38382,7 +38382,7 @@ "variable": [ { "type": "any", - "value": "change-password:enter-password", + "value": "forget-username:user-email", "key": "pageId", "disabled": true } @@ -38399,7 +38399,7 @@ }, "response": [ { - "id": "f97143ae-f507-4dea-acbe-067052e35293", + "id": "65f5cd69-39cb-43b1-9011-9487e7a8375a", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -38448,12 +38448,12 @@ "value": "application/json" } ], - "body": "{\n \"pageId\": \"mfa:enter-code\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", + "body": "{\n \"pageId\": \"unlock-account:enter-username\",\n \"pageContent\": \"\",\n \"locale\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "78ef02dc-3165-4911-bf61-0e6e5e956c6a", + "id": "81c0521f-ef5c-4e67-9b8b-aa50a779fc14", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38502,12 +38502,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "53766132-8b8b-40da-9a49-a247f70b8fbc", + "id": "eb3b0b65-7082-4408-8370-ac5498631289", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38556,12 +38556,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "715c978b-7721-480d-8c53-889786597450", + "id": "a71322f0-a270-4987-8b73-c62e93a62222", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38610,12 +38610,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5508f21-73e9-4d64-82c4-3c88ed739274", + "id": "31426300-e88e-457a-9ef3-2a19b2d3049a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38664,7 +38664,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38675,7 +38675,7 @@ } }, { - "id": "b937d71d-32de-403e-b040-3bffc8deaabc", + "id": "d9f2e775-c08b-4618-81d6-af9fe05d8481", "name": "Delete Custom Password Instructions by page ID", "request": { "name": "Delete Custom Password Instructions by page ID", @@ -38705,7 +38705,7 @@ "variable": [ { "type": "any", - "value": "change-password:enter-password", + "value": "forget-username:user-email", "key": "pageId", "disabled": true } @@ -38722,7 +38722,7 @@ }, "response": [ { - "id": "ef7284ab-0f5e-44a7-92b0-38333c357282", + "id": "e955cfdf-d35f-456a-a9df-360c242ecfe2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -38766,7 +38766,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bb8192fd-63f6-45e8-93d8-7b38381383f6", + "id": "371b94d9-4cd6-43b8-845e-c282cb01b118", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38815,12 +38815,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "96228ec5-2bc3-4d97-935d-de4612edfe1e", + "id": "15d70d89-cd37-46fc-b598-ca7712c71f9c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38869,12 +38869,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "50d67036-8b30-43fc-b9f5-baa13860600c", + "id": "8ee0d9c1-7fb0-47ff-a7f2-e2acb8bf881c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38923,12 +38923,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4bb1dff7-3a4b-46dd-bef5-c230cc2cb46d", + "id": "d642cfac-3c3e-42bb-9793-2fb677cc4291", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38977,7 +38977,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38994,7 +38994,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": "5dff8d17-a098-46ec-8ac1-75088afbd18c", + "id": "db6a0b99-5c64-4cd4-aa9b-01f71678449e", "name": "Gets a list of entitlements.", "request": { "name": "Gets a list of entitlements.", @@ -39105,7 +39105,7 @@ }, "response": [ { - "id": "a6c11e19-fabf-4892-baf9-dcf40232be88", + "id": "8a2b290e-968b-4c4a-831e-2be4e7982da1", "name": "List of entitlements", "originalRequest": { "url": { @@ -39225,12 +39225,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 \"Lorem_72f\": 92414801.05428982,\n \"cillume7\": -41810756,\n \"eiusmod_6\": -92210243.43732154\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 \"cupidatat_2\": true\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 \"occaecat_9\": -34200185\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 \"Ut_f\": false,\n \"eae\": 42539381.04411\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": "cffd97ff-2623-4159-90a9-50d61e792bb9", + "id": "be75901e-16a9-4f6f-9e3c-2d18067f5b2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39350,12 +39350,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "edd78233-e0ab-407c-bf01-fc376fd414cb", + "id": "c8562ea6-e8e4-4462-b23b-1229d5637193", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39480,7 +39480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "375d868c-ac04-4921-ae8c-10532ade7c14", + "id": "041b99df-6869-4c4f-af6b-e4f0b7040239", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39600,12 +39600,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dfbc4aae-bae4-4f08-82da-44f6637d0e2f", + "id": "53768d7f-23c5-4ac0-bafa-90aad474d2c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39730,7 +39730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdece447-4a57-4969-8c97-e147f6193b90", + "id": "70145b66-2589-45df-8be3-f02a0e632304", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39850,7 +39850,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -39861,7 +39861,7 @@ } }, { - "id": "e409e20e-cda6-499a-9666-c4fe917486a6", + "id": "e6ab664c-e1dc-4343-97c1-55a1987e469d", "name": "Get an entitlement", "request": { "name": "Get an entitlement", @@ -39898,7 +39898,7 @@ }, "response": [ { - "id": "801d3da3-24f8-45ec-9665-cae01c11a3b2", + "id": "4a72f155-8f7b-49f3-aa1a-067804b82d73", "name": "An entitlement", "originalRequest": { "url": { @@ -39937,12 +39937,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 \"pariatur_e\": \"sit do\",\n \"adipisicing_5\": 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}", + "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 \"dolor_a73\": 62991897,\n \"ex_627\": true\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": "c14e6831-9ae4-4272-bad4-1fd052fc6487", + "id": "c669f50e-af56-47b8-a217-5d6a986c1dec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39981,12 +39981,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b92dc36-56de-4bd1-bdf4-886928e9f66d", + "id": "0d8bb448-e8c6-4012-9eea-38eecd73f403", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40030,7 +40030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "793074cd-6a7b-4a20-8186-e0ac52595ebd", + "id": "7ae60007-c221-4bbd-b03c-1f95ff2bd8b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40069,12 +40069,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5b87071-de29-455e-a031-7a3d4610a8b7", + "id": "38ce213c-d042-4862-a817-108c19447606", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40113,12 +40113,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "30f5dfb5-ab7e-4804-9c01-48d2795abe6f", + "id": "eb45c67b-afe9-4e4f-8a6e-85e3f1f2efe7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40162,7 +40162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8823bc4-5a83-49d0-a112-679cdc21acc9", + "id": "1a1491c8-fa19-42b7-9998-cbf3143614c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40201,7 +40201,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40212,7 +40212,7 @@ } }, { - "id": "ff0c5400-958d-4053-9371-1214d0b9ff3f", + "id": "27624047-8930-4fd4-b560-42332499d4e0", "name": "Patch an entitlement", "request": { "name": "Patch an entitlement", @@ -40251,7 +40251,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40262,7 +40262,7 @@ }, "response": [ { - "id": "4a073f9f-6dd8-4a70-97bc-65c7770f1f0f", + "id": "242a6591-f45a-4b4b-92c5-de36d17a36cf", "name": "Responds with the entitlement as updated.", "originalRequest": { "url": { @@ -40297,7 +40297,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40314,12 +40314,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 \"pariatur_e\": \"sit do\",\n \"adipisicing_5\": 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}", + "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 \"dolor_a73\": 62991897,\n \"ex_627\": true\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": "ec7e91f6-b247-4cd4-815a-bef03389ce27", + "id": "d93e9ed9-6d95-43c7-8bc2-68a7e4f2825e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40354,7 +40354,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40371,12 +40371,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1dd11a3c-f9cc-47a9-9277-3a60a25f567c", + "id": "326f17eb-c656-46e5-8340-a97d253c4f46", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40411,7 +40411,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40433,7 +40433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8fa900e-ab29-4da0-900d-b49dc25b96d8", + "id": "4b50d137-b1ad-4a68-add1-751d2245f0af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40468,7 +40468,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40485,12 +40485,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b90af43a-8265-4a2d-a24c-59ccf5841aed", + "id": "663824c1-918c-451d-8ddc-3d9e5328762e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40525,7 +40525,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40542,12 +40542,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b16c29e3-dff3-4b5b-a8ae-7b66166d5a58", + "id": "3f0c4743-941d-4518-b0f5-2d28f4d7fba0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40582,7 +40582,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40604,7 +40604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3fe72e8-3520-419d-9da2-5b965ce608b7", + "id": "c9d797d6-6e9c-4042-b9e2-a74dc22f1b3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40639,7 +40639,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"test\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -40656,7 +40656,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40667,7 +40667,7 @@ } }, { - "id": "ad05dec1-0051-42e3-bb3c-15a86f3278c7", + "id": "6188ce94-abea-4551-bfce-a27bafb0afab", "name": "List of entitlements parents", "request": { "name": "List of entitlements parents", @@ -40751,7 +40751,7 @@ }, "response": [ { - "id": "e02fbbc7-3c67-4528-8e7a-7ea6b261d2cb", + "id": "60f56a74-0d44-4e34-b677-c0fba2d3d774", "name": "List of entitlements parents from an entitlement", "originalRequest": { "url": { @@ -40837,12 +40837,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 \"Lorem_72f\": 92414801.05428982,\n \"cillume7\": -41810756,\n \"eiusmod_6\": -92210243.43732154\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 \"cupidatat_2\": true\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 \"occaecat_9\": -34200185\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 \"Ut_f\": false,\n \"eae\": 42539381.04411\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": "d015ca1e-b5cb-43b6-820d-6e174f24dfdd", + "id": "7ee3f8e2-7b1a-4168-98c6-7e56da5ec7b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40928,12 +40928,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3ba3292-0521-46b2-b554-2ce91d0fbc2a", + "id": "38465dde-a13f-4650-9e74-f904d0c27f3f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41024,7 +41024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21aeb291-b2d3-4ab7-b6ff-55c2848e7b46", + "id": "3657b697-1bc7-4f7c-8c0a-342048fcd576", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41110,12 +41110,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fbb99b44-64ef-4fae-8b92-8aa866cd7378", + "id": "057ddeff-7fa8-4880-bc08-3a66d811ab80", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41201,12 +41201,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b636cb5-e3f5-42ab-9321-a719948e6a4d", + "id": "0c887b3d-4846-4e5b-bed4-46f95ae1f308", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41297,7 +41297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0b56be9-622c-4609-9765-82669ac332cd", + "id": "dfabc8bc-0a71-4feb-b05b-2071b81920de", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41383,7 +41383,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -41394,7 +41394,7 @@ } }, { - "id": "3ded58ea-6705-4846-83e4-4247ffb69959", + "id": "b8bc534f-93ec-40eb-a588-29c75f876f80", "name": "List of entitlements children", "request": { "name": "List of entitlements children", @@ -41478,7 +41478,7 @@ }, "response": [ { - "id": "9c28a462-6f49-4370-980e-edd03149ad5e", + "id": "3aafa4f7-42e9-4202-bb93-00f94763c5c7", "name": "List of entitlements children from an entitlement", "originalRequest": { "url": { @@ -41564,12 +41564,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 \"Lorem_72f\": 92414801.05428982,\n \"cillume7\": -41810756,\n \"eiusmod_6\": -92210243.43732154\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 \"cupidatat_2\": true\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 \"occaecat_9\": -34200185\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 \"Ut_f\": false,\n \"eae\": 42539381.04411\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": "523fe1b9-14a3-44c3-9f06-19dcc2ffd310", + "id": "744e00f9-8f1b-4920-b9bb-e6d162aa2300", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41655,12 +41655,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe5fa9b2-e70e-4b70-a664-b194e8e1cffc", + "id": "15b0b8a5-5040-4c82-bcee-f571e40dec41", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41751,7 +41751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "673377cf-4740-4843-86ea-4624917e0c55", + "id": "8eba8cfd-370c-44c9-95de-82d4849d55b8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41837,12 +41837,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85e0e15d-89bd-413c-8499-d178c4aa3892", + "id": "f2238415-0d37-4b8e-a9d3-2312a6bcfcbf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41928,12 +41928,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "974bd108-c383-49d2-8452-b451da1f1137", + "id": "c6db2ecb-c834-43d1-a201-3da006e2594f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42024,7 +42024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a168dfa3-68a0-40a2-a063-77d4447ced0a", + "id": "d6cc8289-f5c0-471a-a869-b7061cad131a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42110,7 +42110,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -42121,7 +42121,7 @@ } }, { - "id": "805d9244-f41b-4f00-abfa-000ff7242038", + "id": "1e2beecf-9025-46ca-8754-d00d1d2e4f94", "name": "Bulk update an entitlement list", "request": { "name": "Bulk update an entitlement list", @@ -42153,7 +42153,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42164,7 +42164,7 @@ }, "response": [ { - "id": "085d64c1-93eb-4d77-a16a-22f569750542", + "id": "d45cf485-7ed6-4920-9c61-fdfe0944fb53", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -42195,7 +42195,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42211,7 +42211,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e9e3c031-3b43-4170-a113-ed79ce8ecde2", + "id": "5a29cefe-5bd3-49dd-9088-6275e8357398", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42246,7 +42246,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42263,12 +42263,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71c41289-1b94-4a89-bc68-7e4b6524791d", + "id": "2dae16cd-12b5-497a-9866-20157cdc0407", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42303,7 +42303,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42325,7 +42325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "449809e0-3f38-4e60-ac07-d1b2230a3d7e", + "id": "87591ec7-7c66-4788-acde-4a5dcd8aea50", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42360,7 +42360,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42377,12 +42377,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2f7931c-0844-4616-a43d-f5e748bedc0d", + "id": "3bbda6d0-39a0-4b46-83cf-422bc089281d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42417,7 +42417,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42439,7 +42439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c954d257-783b-4721-815f-02e4d8a0d560", + "id": "a4c08bab-ee47-4292-9d39-331f0410bfe8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42474,7 +42474,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"entitlementIds\": [\n \"\",\n \"\"\n ],\n \"jsonPatch\": [\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -42491,7 +42491,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -42502,7 +42502,7 @@ } }, { - "id": "58363d4c-6fc6-443a-b63c-01645ffb81b4", + "id": "ea0fa08a-2cfb-4280-b82e-6625837ed301", "name": "Get Entitlement Request Config", "request": { "name": "Get Entitlement Request Config", @@ -42540,7 +42540,7 @@ }, "response": [ { - "id": "02a361dc-b518-46ef-aa38-77c2057cf2ac", + "id": "f0ca2489-feb5-404f-8f63-d26d941347aa", "name": "An Entitlement Request Config", "originalRequest": { "url": { @@ -42580,12 +42580,12 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"ENTITLEMENT_OWNER\",\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": "37cdffd6-0361-4589-bbf4-3bc7f0c90a0c", + "id": "3388798b-1962-44e2-9819-d2baca4fab6d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42625,12 +42625,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16e4bf1e-449e-40b2-b791-a2d84900df40", + "id": "14e9b1ab-4c18-4458-b455-357c956527d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42675,7 +42675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58a6dd2b-c68d-47cd-954d-2afbbf0d52be", + "id": "ed48f06e-5eaa-49cb-81ae-20f40c29c27e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42715,12 +42715,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "14ca17f1-94ac-4ed6-b2c8-61215c3b7464", + "id": "e553732e-fb23-4d13-b336-361454d9d80f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42760,12 +42760,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "20830a82-95ff-4a72-8a28-8720f281ecc9", + "id": "cc1ffa7d-a0b6-4472-b561-8aa010a9db2a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42810,7 +42810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84ffac47-356b-421c-884a-c90d5f7f4503", + "id": "2998b505-3abc-4018-88d8-1323675389c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42850,7 +42850,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -42861,7 +42861,7 @@ } }, { - "id": "15dc9649-4de2-437e-8d8a-684e71e15bc0", + "id": "dcd3421d-6cb8-4606-9e4d-0ca79e927f82", "name": "Replace Entitlement Request Config", "request": { "name": "Replace Entitlement Request Config", @@ -42901,7 +42901,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -42912,7 +42912,7 @@ }, "response": [ { - "id": "5db01d55-5f6a-42a6-8015-f84bdc57f57f", + "id": "16e99510-648f-4093-8303-7e423fbd6fc2", "name": "Responds with the entitlement request config as updated.", "originalRequest": { "url": { @@ -42948,7 +42948,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -42965,12 +42965,12 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"ENTITLEMENT_OWNER\",\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": "7f2ecd9e-a8ef-4dcf-8d84-51cd45b0ea09", + "id": "370a9d6c-3dd7-4d26-8c25-3d1b92e0be70", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43006,7 +43006,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43023,12 +43023,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f340cc51-2cc3-470a-bab1-5735369f73c8", + "id": "f40e0247-89b3-4d8b-aa1d-ac28ccb9467d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43064,7 +43064,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43086,7 +43086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fe395be-b8b2-4a73-aa60-3e87661e153e", + "id": "fa55b7ef-8e4e-4991-be34-313936dc1392", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43122,7 +43122,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43139,12 +43139,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e74a0fe6-2082-41b2-a78a-c689bffca84b", + "id": "bf92139d-da27-4983-b76f-731de0ff60c3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43180,7 +43180,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43197,12 +43197,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d6b18a4-be02-4769-9d6c-76ec96ea46ee", + "id": "1fa35ad8-18d9-40fe-9642-0f73e4e67bd0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43238,7 +43238,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43260,7 +43260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fff1cae-7c90-4ee1-a161-b6c475782f38", + "id": "cd704032-be5a-4b1d-a523-5545a3675d1a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43296,7 +43296,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -43313,7 +43313,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43330,7 +43330,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": "9924af35-8b35-4426-9fc8-7d6c1ba6b1b1", + "id": "8caccff5-a9f8-4ec5-b306-cb4b61f167c9", "name": "List Governance Groups", "request": { "name": "List Governance Groups", @@ -43396,7 +43396,7 @@ }, "response": [ { - "id": "671330f3-6318-4323-a800-08b489355a4a", + "id": "7f700847-1ce6-431b-814e-bf3bc0773699", "name": "List of Governance Groups", "originalRequest": { "url": { @@ -43471,12 +43471,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n },\n {\n \"owner\": {\n \"type\": \"CERTIFICATION\",\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\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n },\n {\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4ee982b-c880-4562-9070-d972d4a9752a", + "id": "4bfb1d71-01c1-4448-ac83-23266e2f19c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43551,12 +43551,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "483c47b5-24eb-4420-9364-e01d0301ed39", + "id": "b4e15b2d-1e95-4450-ada2-59271b72389b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43636,7 +43636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "995838f6-fd9e-4bb6-8a9f-3ac2c4221cf1", + "id": "9dc7a6b0-5286-4f02-b6e2-5fa838440275", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43711,12 +43711,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87c43e47-848a-48c5-9570-66e2bb2935e9", + "id": "4be57fe2-3909-4f9b-9f48-8082e5fdb324", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43796,7 +43796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e7132c2-338d-4bbb-9abf-c4242d829e66", + "id": "e7da9bb5-a97a-4a00-a167-a55ca22c618a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43871,7 +43871,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43882,7 +43882,7 @@ } }, { - "id": "49a4743d-2fca-4a4b-a5e3-50a73ac699d8", + "id": "8c3fe302-54eb-44b3-8cac-60896e511773", "name": "Create a new Governance Group.", "request": { "name": "Create a new Governance Group.", @@ -43913,7 +43913,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -43924,7 +43924,7 @@ }, "response": [ { - "id": "040e6171-8c83-4264-bd9c-e05ae0cb5671", + "id": "21f602f8-1a49-45e3-abf8-5ef28cdbc336", "name": "Governance Group object created.", "originalRequest": { "url": { @@ -43958,7 +43958,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -43975,12 +43975,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "body": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "973335c9-9d9e-41e3-8e02-8c0a46a09b6e", + "id": "cbf4a3ca-ea1e-4c93-93ec-42b792c14391", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44014,7 +44014,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44031,12 +44031,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "263cf461-6702-427f-9c72-a6fd281b0e72", + "id": "24b0f3e0-a151-4f8f-a44e-b2d12a268ebc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44070,7 +44070,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44092,7 +44092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f8314b5-4247-4360-8326-d33da531a45c", + "id": "ff9636d8-668f-4101-8840-211d115a9433", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44126,7 +44126,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44143,12 +44143,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9be97897-192a-4937-a1b9-445e82dad7e2", + "id": "8e8de180-3e66-4e5c-8bbb-f9012bf89234", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44182,7 +44182,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44204,7 +44204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8d3b886-a570-4bb1-a6db-f1cd646fea4d", + "id": "f979d98f-6deb-4d7f-b99a-a605fd57ac48", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44238,7 +44238,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"owner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "raw": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -44255,7 +44255,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -44266,7 +44266,7 @@ } }, { - "id": "5f852d30-3f9a-462b-aa71-6583e2fd3d9e", + "id": "f881a530-de8c-4293-bfdc-c7c551eaf7ab", "name": "Get an Governance Groups", "request": { "name": "Get an Governance Groups", @@ -44303,7 +44303,7 @@ }, "response": [ { - "id": "fa57c52d-c8d4-460b-90e0-4a216043ff23", + "id": "92f11121-d6a1-4937-ae52-4c66b62ffee0", "name": "An Governance Groups", "originalRequest": { "url": { @@ -44342,12 +44342,12 @@ "value": "application/json" } ], - "body": "{\n \"owner\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", + "body": "{\n \"owner\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"displayName\": \"\",\n \"emailAddress\": \"\"\n },\n \"id\": \"\",\n \"description\": \"\",\n \"memberCount\": \"\",\n \"connectionCount\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2109e777-34a3-4e05-b9e0-eb8546065905", + "id": "6359efd2-c83b-45e5-ba1e-364d144281b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44386,12 +44386,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "082e1d40-242b-4106-bc64-dc6fb7a4e1e0", + "id": "38eb3ac2-f117-418c-b56e-3f1e88d28607", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44435,7 +44435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74ce5d39-0597-4c24-8e88-41fd5bd6dd77", + "id": "991b3ba4-b942-4a37-a7cb-d30dbda79027", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44474,12 +44474,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b9dc551b-ea31-496d-ba4d-fca790140178", + "id": "30a0ec83-810a-4977-a576-24c2f0861ebd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44523,7 +44523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6df3769a-17bf-4d2f-b63c-e7afd5f7b993", + "id": "493a8e85-9459-4cab-b949-0c882b46d267", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44562,7 +44562,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -44579,7 +44579,7 @@ "description": "", "item": [ { - "id": "e8ba982d-b1c4-4614-89dd-194799b0901d", + "id": "b79ada81-5262-4a12-a88a-0077dc95a051", "name": "Identity Access Request Recommendations", "request": { "name": "Identity Access Request Recommendations", @@ -44672,7 +44672,7 @@ }, "response": [ { - "id": "cf5f0b8f-7ca6-43e9-a03f-d391d73d4a88", + "id": "b87153f1-5b64-476a-bbc1-56bf8e2da446", "name": "List of access request recommendations for the identityId", "originalRequest": { "url": { @@ -44779,7 +44779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72ed7c2f-936f-4cc4-8ad6-796ec8509bdc", + "id": "b2916656-075e-4278-b8ae-fea0b6c46f44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44881,12 +44881,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7edb667c-d349-49a0-a08e-35e7885cfa3d", + "id": "5c89b24b-000e-413a-aa6b-cd2e2bc466fc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44993,7 +44993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d18f377c-719e-4081-803c-ceb56e1c47bf", + "id": "f8904fbe-34c4-41a7-b9a9-c0adfb178f44", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45095,12 +45095,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a0b1b32c-efed-45cc-a545-7863bdf22560", + "id": "7ca46a9e-b50b-43ce-a124-d917d386edb0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45207,7 +45207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d5c8ee3-24dd-4c77-8773-238e349223d9", + "id": "81cfe0de-92af-4481-9854-12bfc7f78f16", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45309,7 +45309,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -45320,7 +45320,7 @@ } }, { - "id": "64ff9dd7-0789-4da9-bbb3-98a54ca8fea9", + "id": "7409db64-e672-4596-b5fc-71eaff896fac", "name": "Notification of Ignored Access Request Recommendations", "request": { "name": "Notification of Ignored Access Request Recommendations", @@ -45363,7 +45363,7 @@ }, "response": [ { - "id": "0f3b3c41-d391-436f-8088-a7d8358d344a", + "id": "2c0ba7da-8f50-429b-81e4-bcaff01f43cc", "name": "Recommendation successfully stored as ignored.", "originalRequest": { "url": { @@ -45415,12 +45415,12 @@ "value": "application/json" } ], - "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n}", + "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3f258c87-6124-4d91-99aa-aa8a399c5822", + "id": "346af353-db8e-4fdf-8cdd-45c5ec10a241", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45472,12 +45472,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37f67b72-12d8-4b69-a622-6d73ba28136c", + "id": "71311f44-7739-42b7-b5e5-a8fd8b6437a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45534,7 +45534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55c71213-6ed9-48ed-bbc6-a4c523f31752", + "id": "3f335688-2249-4aa4-b222-d8778469bab3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45586,12 +45586,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "809f70b9-587d-4ea2-80c1-a76c463dad5e", + "id": "5e23e042-85b4-4c25-bafe-b2770e7bc21e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45648,7 +45648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77b5763a-e761-404c-9139-13118016ad49", + "id": "940fc538-02d2-4457-acfb-28a828baa8ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45700,7 +45700,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -45711,7 +45711,7 @@ } }, { - "id": "f92c559c-83b6-4a7a-b31b-1f73c6676b20", + "id": "88ee7d48-5116-48ad-8d19-716ca17a2dd1", "name": "List of Ignored Access Request Recommendations", "request": { "name": "List of Ignored Access Request Recommendations", @@ -45787,7 +45787,7 @@ }, "response": [ { - "id": "45e970ba-04d6-4a5b-b992-53efe759fe65", + "id": "ba867952-4d79-4211-ba0b-374de3e32859", "name": "Returns list of ignored access request recommendations.", "originalRequest": { "url": { @@ -45872,12 +45872,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\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\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe42f66e-82f6-44f6-8598-a7d608304f22", + "id": "63d90aa4-5cc6-46b6-bd0a-65e9449055ed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45962,12 +45962,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39ef2c5d-6801-4415-8d02-dd35c07455da", + "id": "c9d28c84-4322-4e35-8320-8ae468417d81", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46057,7 +46057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23fad995-a18d-447b-8f03-66f13557b9b3", + "id": "b9a00dcf-3f1d-4962-950f-72c04f023044", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46142,12 +46142,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b83b5d0a-3cc9-452a-9c85-d79ee82b5622", + "id": "f91437a4-db5a-4b5f-9682-b998da6eb5d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46237,7 +46237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2be37837-6954-4805-bdd1-c3129956a3c3", + "id": "33b5b0d5-2a20-48d5-a5bf-caa377ef3c57", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46322,7 +46322,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -46333,7 +46333,7 @@ } }, { - "id": "3522c09a-dbe7-494f-a9ab-83e03d93384b", + "id": "ef45993e-bc9b-4b21-bd87-3a9e8450fbe5", "name": "Notification of Requested Access Request Recommendations", "request": { "name": "Notification of Requested Access Request Recommendations", @@ -46376,7 +46376,7 @@ }, "response": [ { - "id": "31a842c4-4f03-497c-a2b1-02328e78a578", + "id": "5b535e1d-b3b1-4f54-9e38-2534a93e4b92", "name": "Notification successfully acknowledged.", "originalRequest": { "url": { @@ -46428,12 +46428,12 @@ "value": "application/json" } ], - "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n}", + "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5b76c70e-6980-4085-befd-905c7b027f1b", + "id": "8996f8f0-664b-429e-959c-1e35b5cfc9f3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46485,12 +46485,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3a59e81-a2f4-42d4-a298-dc9a33546f8e", + "id": "2c5021e3-6588-4ea0-ae33-15b893dc5f7f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46547,7 +46547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38e4022d-32d6-4683-b05d-f874807e081d", + "id": "d30e205b-46f8-4155-a0e9-07f580e8a31f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46599,12 +46599,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86d4150b-d75f-43d9-977f-2fef7c0ba598", + "id": "f88cde2e-8288-4fdd-a8d5-6b569b18059e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46661,7 +46661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a115fd14-2b5a-4094-a687-3c4af782743e", + "id": "4abd875d-8cc7-4957-b894-3b9eb8567980", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46713,7 +46713,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -46724,7 +46724,7 @@ } }, { - "id": "4a6d896c-0acb-4b1b-87a9-1d008793cb75", + "id": "8ab58fe3-ec00-4f0f-869b-494c0b906c20", "name": "List of Requested Access Request Recommendations", "request": { "name": "List of Requested Access Request Recommendations", @@ -46800,7 +46800,7 @@ }, "response": [ { - "id": "fa6e5749-f52d-418a-afaf-280c100f46a2", + "id": "d019fe31-0d88-40ed-bde2-c6cd8ab67118", "name": "Returns the list of requested access request recommendations.", "originalRequest": { "url": { @@ -46885,12 +46885,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\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\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2f2965c7-3b98-4486-b031-e59e465216b9", + "id": "0e95dbda-01ec-48ed-9e08-35581e7b6423", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46975,12 +46975,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fad71834-d74e-4cc7-a09d-466919573bfe", + "id": "01d3075f-77d0-427e-bbe9-d073789bb91b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47070,7 +47070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4cb833a-9939-459f-87e1-5a835a003046", + "id": "f578307d-0065-40ff-a3c6-817c4f1db82e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47155,12 +47155,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "99d40f21-c9db-4ac6-801f-13b957b213ba", + "id": "bb3ca87c-94d5-4d17-9211-313405d589d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47250,7 +47250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fe173c3-9393-4912-b8be-72a489796a91", + "id": "1faf49e2-a02e-427e-80de-57bab596013f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47335,7 +47335,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -47346,7 +47346,7 @@ } }, { - "id": "2b368de7-9409-421d-a47b-d2add65aadb2", + "id": "ccd7fe6a-c586-4feb-8296-ab724a7be7bf", "name": "Notification of Viewed Access Request Recommendations", "request": { "name": "Notification of Viewed Access Request Recommendations", @@ -47389,7 +47389,7 @@ }, "response": [ { - "id": "4bbabffa-0125-4ef4-89f0-c1160fb46b88", + "id": "a31c76f4-1e7e-46c9-bd52-16a36e6a7632", "name": "Recommendation successfully stored as viewed.", "originalRequest": { "url": { @@ -47441,12 +47441,12 @@ "value": "application/json" } ], - "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n },\n \"timestamp\": \"\"\n}", + "body": "{\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bea07064-dbee-4656-b304-7b61de2288a2", + "id": "b4b2b64b-6370-419a-8a1b-215bfe01181a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47498,12 +47498,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8881eebf-cbfc-460b-9046-1adfc7b45266", + "id": "d2ce80a0-67ae-4178-828b-6625c8e63638", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47560,7 +47560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad8cf354-60b5-4727-b3c0-e93e71b19e39", + "id": "22f40ed6-2a71-4e73-b633-91ad9883a882", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47612,12 +47612,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64da7647-af39-4301-86b2-56f80252b8df", + "id": "5b41a82c-aed4-4e5a-9499-88cfee7c4d38", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47674,7 +47674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7310d125-7fe1-4fcc-aabc-b5291d7620ff", + "id": "c42fc2d0-3569-4cef-84a2-ad465509f7fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47726,7 +47726,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -47737,7 +47737,7 @@ } }, { - "id": "cc1b2a54-5148-451e-a2b5-a0c1429b4419", + "id": "d2fcd713-e445-4a13-af9e-b90aa16b7cc1", "name": "List of Viewed Access Request Recommendations", "request": { "name": "List of Viewed Access Request Recommendations", @@ -47813,7 +47813,7 @@ }, "response": [ { - "id": "7ecd421a-74b6-4884-85df-a8ff58674cd7", + "id": "a8a9fe6c-adf2-4b0a-b514-169e9bdb403f", "name": "Returns list of viewed access request recommendations.", "originalRequest": { "url": { @@ -47898,12 +47898,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\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\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a34bcc6b-1a1c-4e4b-86fd-6e014ad54ed0", + "id": "c4e349ed-7ef8-40dc-9520-a6a380710e96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47988,12 +47988,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e6d204cc-c226-4b04-a1ca-a532274299c3", + "id": "bab490bb-5a3b-4e9b-9df0-68a1f1cba336", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48083,7 +48083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f7d4c75-db2c-4e0b-8352-a4ce94236c2f", + "id": "e5eaabb8-4fa6-4f9d-899a-cf099877f183", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48168,12 +48168,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3407dc43-6b55-4583-a0b8-dae8d105b53f", + "id": "46691404-e739-465d-99db-32e1621de177", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48263,7 +48263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "865db447-67b1-431d-834d-2705345ded1c", + "id": "65193b88-d0cc-4089-a37e-65f46d868457", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48348,7 +48348,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -48359,7 +48359,7 @@ } }, { - "id": "798a7266-1aa9-4c22-ba51-07aeea7afadb", + "id": "202d224d-b3aa-4dae-b42b-4836e07d358f", "name": "Notification of Viewed Access Request Recommendations in Bulk", "request": { "name": "Notification of Viewed Access Request Recommendations in Bulk", @@ -48403,7 +48403,7 @@ }, "response": [ { - "id": "11cbd5b6-de60-4f0f-ae7f-682e60203df7", + "id": "d7d50e39-515e-4a91-90a3-4eabbc109303", "name": "Recommendations successfully stored as viewed.", "originalRequest": { "url": { @@ -48456,12 +48456,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n },\n {\n \"identityId\": \"\",\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\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\": \"ACCESS_PROFILE\"\n },\n \"timestamp\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63453d94-57b0-4b81-92bc-9be1973e8dca", + "id": "2cab596b-367f-467d-892d-4a8b9b2f569c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48514,12 +48514,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2057e44d-16bd-4801-adb8-1ef94df47572", + "id": "6151f5d7-d3e8-4f28-a4a5-a5a9f6df1512", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48577,7 +48577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dd04dc6-e31a-4f87-94f9-f3569c9a32cc", + "id": "a3c56c78-3ef7-412a-98a6-1a9b8fc4620c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48630,12 +48630,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "361b425a-114f-4e09-93da-77723b0f1863", + "id": "e2bfb152-2547-4c69-b8c0-807565ce32c0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48693,7 +48693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d295b45d-a713-4617-b24c-91202f4e40a1", + "id": "48eb0e82-1575-4fc6-8436-bda0b41d6b33", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48746,7 +48746,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -48757,7 +48757,7 @@ } }, { - "id": "f1e7392a-d503-4f5d-9434-e0455fadda0d", + "id": "6643b506-6574-45f3-9688-a8c923de7843", "name": "Get Message catalogs", "request": { "name": "Get Message catalogs", @@ -48777,7 +48777,7 @@ "variable": [ { "type": "any", - "value": "access-request-recommender", + "value": "recommender", "key": "catalog-id", "disabled": true } @@ -48794,7 +48794,7 @@ }, "response": [ { - "id": "c56cfe54-1bd5-4682-ad76-241e62161ca7", + "id": "97a0d9fb-c573-4dc2-b046-73e98d9105d5", "name": "The message catalogs based on the request headers", "originalRequest": { "url": { @@ -48838,7 +48838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d645297e-b8e5-4db4-b6e1-0b11b1009669", + "id": "0ce9ea62-a034-4305-8f10-60728336a98e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48877,12 +48877,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb043541-0499-476f-bc50-f7da4d9d9733", + "id": "13e25cc2-4902-4fce-859e-abf507359a28", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48926,7 +48926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c3a501d-f695-4fd0-8d01-c3708dc61ed2", + "id": "cb60ba1f-fcf8-4ac6-ac2b-3435aba82fa8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48965,12 +48965,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c0b36563-030d-4dd0-aa43-80fa4442c3f2", + "id": "a2502bf9-907a-4f03-930a-46001ff25085", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49014,7 +49014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd6eef4e-9bd4-437d-bde7-efc4d5c5439c", + "id": "db6a87e3-e783-4ea9-a201-d87fb44bbd61", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49053,7 +49053,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -49070,7 +49070,7 @@ "description": "", "item": [ { - "id": "6ecf770a-e40f-40c6-82ad-cd7425ea48fc", + "id": "807e2c40-33cf-4226-9495-ec9a23f636fe", "name": "Get a paginated list of common access", "request": { "name": "Get a paginated list of common access", @@ -49145,7 +49145,7 @@ }, "response": [ { - "id": "8a3737bf-4a20-417c-bac9-b59ce1dfa99d", + "id": "f75cb2b3-7798-4f1e-b878-ae10f54a8ead", "name": "Succeeded. Returns a list of common access for a customer.", "originalRequest": { "url": { @@ -49229,12 +49229,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": "fc4b9935-7aec-4eb9-be1d-6482f37424c6", + "id": "ff5d6ae4-3a44-46ed-aae7-cda89839b90b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49318,12 +49318,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e00c9c1-804b-4d7b-9c9b-28be467602df", + "id": "ed192c67-97fd-4643-9bd6-10065e615be7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49412,7 +49412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3fe0559-afda-4e90-a29c-4ecb25c7eb3f", + "id": "43e18948-c056-4eb7-94df-a27bc4861427", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49496,12 +49496,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7af8d527-bd23-4e2d-9caa-cf58cc68c9ea", + "id": "1fb58ca3-56a0-4a4c-8f00-3776f00df081", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49585,7 +49585,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -49596,7 +49596,7 @@ } }, { - "id": "92315fce-018c-4ad8-aa6b-04e7da28655f", + "id": "9f299f49-43c5-4229-9f99-ee6aefa6c1bb", "name": "Create common access items", "request": { "name": "Create common access items", @@ -49627,7 +49627,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\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", @@ -49638,7 +49638,7 @@ }, "response": [ { - "id": "b1fe3d78-23af-4cd4-a906-293c93a6ad7e", + "id": "be94bb9f-ca93-4987-a85a-50c231739f52", "name": "Returns details of the common access classification request.", "originalRequest": { "url": { @@ -49672,7 +49672,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\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", @@ -49689,12 +49689,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\": \"DENIED\",\n \"lastUpdated\": \"\",\n \"reviewedByUser\": \"\",\n \"lastReviewed\": \"\",\n \"createdByUser\": \"\"\n}", + "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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3045f71-3b80-487a-9286-363faa5562a6", + "id": "55d4c694-f066-4001-a550-cdc32760684d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49728,7 +49728,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\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", @@ -49745,12 +49745,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1c01634-174f-422e-820b-ef88425a49bd", + "id": "727f6439-53de-4f17-9ce5-279c30a0cb08", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49784,7 +49784,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\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", @@ -49806,7 +49806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50f07f9c-aef5-4092-998e-09a134f319e9", + "id": "6733d38d-42e2-43ed-b34f-151dcc4382d0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49840,7 +49840,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\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", @@ -49857,12 +49857,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c3bd7c80-6d47-4ddb-b8e8-3da3bf492321", + "id": "500e4303-c0c9-419f-a1b6-0d09c2c3148c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49896,7 +49896,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\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", @@ -49918,7 +49918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15d9b3d0-430e-44d7-b000-459a35968d37", + "id": "15340db3-b49e-4c0a-ba10-653132d65703", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49952,7 +49952,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\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", @@ -49969,7 +49969,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -49980,7 +49980,7 @@ } }, { - "id": "a32926ee-69aa-4946-a79b-e0deb8572cf7", + "id": "2f5501c8-81e9-4087-a23a-7b5b08b69303", "name": "Bulk update common access status", "request": { "name": "Bulk update common access status", @@ -50023,7 +50023,7 @@ }, "response": [ { - "id": "f7da0ec1-1134-488d-93ce-2b50e8cd180d", + "id": "a360b341-81f4-4c58-b529-f01961b8e2e4", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -50080,7 +50080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbfa9a9f-0571-4f85-94a4-ef2d3976ccf7", + "id": "197c3601-e1fb-4980-923e-513c60bd2c29", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50132,12 +50132,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af12ad08-3b58-4bd4-9aa7-f35d40c67c34", + "id": "19321dc4-2932-44ab-b8fa-b36aba4d1f24", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50194,7 +50194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af4a5ace-0c1d-4d51-8c46-5a0ee88dcde4", + "id": "415e10fb-7bb9-476a-9125-3857b60ed55a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50246,12 +50246,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db89a95d-70e1-48db-81a6-fc6657011a5e", + "id": "59e6b8b0-8db7-4360-9ad8-f237f983c54b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50308,7 +50308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f58914d-3652-44d6-bf47-76959ee01e85", + "id": "dcef299d-2603-421b-9ed6-d9bcc5692e46", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50360,7 +50360,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -50377,7 +50377,7 @@ "description": "", "item": [ { - "id": "8d787320-d39f-4b28-ac17-f8e289864d56", + "id": "25cb1495-429b-4308-b2c7-297d45ceeec4", "name": "IAI Identity Outliers Summary", "request": { "name": "IAI Identity Outliers Summary", @@ -50418,7 +50418,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -50452,7 +50452,7 @@ }, "response": [ { - "id": "7ee74ec7-7aa7-4edd-8c9a-5591e2694593", + "id": "777db29e-b5c3-4f29-982c-5192858021a8", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -50488,7 +50488,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -50545,12 +50545,12 @@ "value": "" } ], - "body": "[\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\"\n },\n {\n \"type\": \"STRUCTURAL\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\"\n }\n]", + "body": "[\n {\n \"type\": \"STRUCTURAL\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\"\n },\n {\n \"type\": \"STRUCTURAL\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80ab4eaf-8921-41f7-9552-2bd2340b5459", + "id": "9fd58bb5-9421-4e9b-9714-fe7ce7fc4db6", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -50586,7 +50586,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -50639,7 +50639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfc29d71-60b3-47f7-8cc0-8a4ee8d80999", + "id": "19d34515-75a1-4441-918e-b572b357bd1b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50675,7 +50675,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -50723,12 +50723,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b304b43b-aa9f-4ec5-ba24-843a714f7554", + "id": "426ecfed-c6cd-4b6b-839b-d560a1932244", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50764,7 +50764,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -50817,7 +50817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "705b9aa3-798b-4f7f-9bda-3be048e1a8a6", + "id": "bf55c080-adab-4f56-9114-3767d3bec8ea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50853,7 +50853,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -50901,12 +50901,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a8126a3-74e5-4862-b279-b5d6211c8ac7", + "id": "557b6f7c-050d-4733-8970-cc4f3b3d988b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50942,7 +50942,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -50995,7 +50995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d41b995f-493a-4b82-bd4d-7719990d66d2", + "id": "c1751302-e807-4cdb-a2b5-ad235f90b485", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51031,7 +51031,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -51079,7 +51079,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -51090,7 +51090,7 @@ } }, { - "id": "559917cb-e62f-49f5-b683-48b7b34daa12", + "id": "757fac99-2da0-41d9-9ad0-74d2fb8a9dc4", "name": "IAI Identity Outliers Latest Summary", "request": { "name": "IAI Identity Outliers Latest Summary", @@ -51114,7 +51114,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51130,7 +51130,7 @@ }, "response": [ { - "id": "b452f5b9-efba-4f69-b205-7b884e55c78e", + "id": "543ed7d9-900a-4a8b-97b5-93d18bd3e234", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -51149,7 +51149,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51179,12 +51179,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\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\",\n \"totalIgnored\": \"\"\n },\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"\",\n \"totalOutliers\": \"\",\n \"totalIdentities\": \"\",\n \"totalIgnored\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d78f9f95-6f32-4093-b9eb-8296e2a18602", + "id": "32ef7b72-d951-4e78-913f-866e5111fcff", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -51203,7 +51203,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51238,7 +51238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d4b7a07-da22-436f-b91e-c85934bcd76d", + "id": "b3d75549-26f6-45f3-bd86-f2c2f124b461", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51257,7 +51257,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51287,12 +51287,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "821ec963-8d73-434c-bcf3-c1791a226a09", + "id": "df9d7d1b-7c06-4c1c-9463-a40a7452f9b4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51311,7 +51311,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51346,7 +51346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "defc3667-b140-4cc7-a384-158e46b4c0b9", + "id": "8e29f6ea-3f0a-4d25-9f00-0e21d9ea4e6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51365,7 +51365,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51395,12 +51395,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2f2be7d8-9835-47fc-8b5f-37f2d83cd101", + "id": "2b4abc5d-7037-4b05-89f2-dba4f8cff52b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51419,7 +51419,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51454,7 +51454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a71c91b-af5e-4989-93d6-81e9c19d99df", + "id": "60a91cc4-f9c1-4cbb-93d0-f3e739d7268e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51473,7 +51473,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -51503,7 +51503,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -51514,7 +51514,7 @@ } }, { - "id": "568ba0cb-7999-4571-997e-4bbb644baac5", + "id": "688f463d-f7cb-4632-be5e-b6dcdde5032f", "name": "IAI Get Identity Outliers", "request": { "name": "IAI Get Identity Outliers", @@ -51598,7 +51598,7 @@ }, "response": [ { - "id": "80d00bcb-5400-4db2-ac6a-b64d4237126b", + "id": "57e95bc5-82ae-4b36-83df-04dcc90be560", "name": "Succeeded. Returns list of objects. Each object contains information about outliers", "originalRequest": { "url": { @@ -51700,12 +51700,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\": \"MANUAL\",\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\": \"MANUAL\",\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": "29cf22d0-ac4e-4d7a-9922-6466e9ada85e", + "id": "e2ac1d0f-0d53-442d-80e8-70e585125a4a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51798,12 +51798,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "642d0c1b-e632-477b-b80d-fbc4e942e426", + "id": "659b2505-2857-4923-b974-5ccd89b6a385", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51901,7 +51901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e76ba1c-06f2-49ed-81a9-b37fa0629d70", + "id": "3c7df243-955e-4816-bbe4-34146c78cce2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51994,12 +51994,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bfe3e43e-abc3-488e-a48c-3d9921851e5e", + "id": "c2f293c0-df95-4bac-a111-d8582db566fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52097,7 +52097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abbda5f1-3a49-4126-8a1d-798423117b5a", + "id": "4972a1ad-c44b-4e50-9e56-4ccc50251ec4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52190,7 +52190,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -52201,7 +52201,7 @@ } }, { - "id": "a81532a4-5fc9-4f74-96a4-d3bc07aabe69", + "id": "e2512eb2-3a9c-4249-b7d8-a610db5454b7", "name": "Get identity outlier's contibuting features", "request": { "name": "Get identity outlier's contibuting features", @@ -52285,7 +52285,7 @@ }, "response": [ { - "id": "f82a7e1d-fb10-4b82-8c3d-90f3909aae3b", + "id": "26a5fb73-af89-4bf4-93c6-b8181606d446", "name": "Succeeded. Returns list of objects. Each object contains a feature and metadata about that feature", "originalRequest": { "url": { @@ -52389,12 +52389,12 @@ "value": "" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"valueType\": \"FLOAT\",\n \"value\": \"\",\n \"importance\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n \"description\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"valueType\": \"FLOAT\",\n \"value\": \"\",\n \"importance\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n \"description\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"valueType\": \"INTEGER\",\n \"value\": \"\",\n \"importance\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n \"description\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"valueType\": \"INTEGER\",\n \"value\": \"\",\n \"importance\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n },\n \"description\": {\n \"key\": \"\",\n \"values\": [\n \"\",\n \"\"\n ]\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b8c0b9b-3bb8-4818-84e6-aae114f45db8", + "id": "9ab635df-9558-46e9-8d00-2cbff46be9eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52480,12 +52480,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c4d5fd6-4896-4047-a5bc-3c03056df1f1", + "id": "9fb1169d-25ce-4641-92f5-22e8d44d3bd0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52576,7 +52576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27dd69a5-adf1-4694-a892-eec169093982", + "id": "6e5f461d-6cc7-4962-ae25-ac8b8ad29f1a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52662,12 +52662,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "adb4ecea-98f7-4037-b812-3c1827a6b3e1", + "id": "6adebeec-8c1f-4ae9-a43f-f7e89beb6bb6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52753,12 +52753,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a798b264-d89a-4db9-a06e-2f0898ef5b7e", + "id": "409018c7-88f3-4540-8a9e-79d38bed9285", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52849,7 +52849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f50bdac-845c-422c-bd36-21a5a6626bc9", + "id": "5a0667e8-5023-4274-88bb-cfffb3beab1d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52935,7 +52935,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -52946,7 +52946,7 @@ } }, { - "id": "45a89f23-5d6f-4d42-922a-27b95769db60", + "id": "90f41b54-712e-44af-b9b9-1037e2cc0e41", "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", @@ -53021,7 +53021,7 @@ }, { "type": "any", - "value": "mean_max_bundle_concurrency", + "value": "peerless_score", "key": "contributingFeatureName", "disabled": true } @@ -53038,7 +53038,7 @@ }, "response": [ { - "id": "2038864b-faaa-4cae-bec7-b84b46ff4653", + "id": "d47a334d-5e70-46b5-8142-2592b440db00", "name": "The list of access items.", "originalRequest": { "url": { @@ -53126,12 +53126,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"accessType\": \"ENTITLEMENT\",\n \"sourceName\": \"\",\n \"extremelyRare\": false\n },\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"accessType\": \"ROLE\",\n \"sourceName\": \"\",\n \"extremelyRare\": false\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"accessType\": \"ROLE\",\n \"sourceName\": \"\",\n \"extremelyRare\": false\n },\n {\n \"id\": \"\",\n \"displayName\": \"\",\n \"description\": \"\",\n \"accessType\": \"ACCESS_PROFILE\",\n \"sourceName\": \"\",\n \"extremelyRare\": false\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a8b34ba-e981-4da8-b142-943a5b874e73", + "id": "2f7d7e23-c4d5-4f98-b6d4-412ee0c58ad4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53219,12 +53219,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "526b976a-296f-4db7-9067-eb8b374359a3", + "id": "5a621031-928d-4e8c-9371-f65008ec1d50", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53317,7 +53317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97b29e12-0a5c-40f3-97ae-c0e4db636812", + "id": "81ac64aa-492f-4976-b31c-90a69a5909b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53405,12 +53405,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0126d070-8f89-4a76-9366-16b49ebb3782", + "id": "0de96f1b-f507-4353-b7a0-7443d1e98206", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53498,12 +53498,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44b022ca-364b-447e-82e9-b11a2f351731", + "id": "818b32dd-9293-49a3-b97a-75b4ab61306b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53596,7 +53596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7491897-6c28-402f-8ea7-7bf84c5d7123", + "id": "d70feaf0-27f9-4077-ab90-612a482cd18e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53684,7 +53684,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -53695,7 +53695,7 @@ } }, { - "id": "e0c7902a-24f2-41e6-a205-4a2f33f63786", + "id": "9773404a-8646-4ada-9baa-6e8c001ed61e", "name": "IAI Identity Outliers Ignore", "request": { "name": "IAI Identity Outliers Ignore", @@ -53738,7 +53738,7 @@ }, "response": [ { - "id": "3e2ec605-2c83-4f79-9c70-f191b9045079", + "id": "f75c10cf-c4d4-4501-bbb8-378ab0f5d0b9", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -53785,7 +53785,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f266df26-3773-47cf-b2bd-4d79e02339e0", + "id": "9079c10c-7a91-4579-bbc9-685bd4d77110", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53837,12 +53837,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "614253cd-376b-4515-bdd3-e7ac9a59f724", + "id": "35bbfd22-ca0b-4a3c-8056-bdbbf5c41f00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53899,7 +53899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01877b08-e40a-42d9-bc7a-7d0f3048bcdf", + "id": "4c6b2299-29e4-4d55-8acf-7e97865b7913", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53951,12 +53951,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "460b00b9-edd2-4f85-9fed-508b9d9b8474", + "id": "6faf6ddb-c5cb-4995-85b1-b428c39561f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54013,7 +54013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca41f492-bfd3-431e-b1c7-8cb4783502b4", + "id": "988bfe9c-4b00-4a1b-b2be-d793520c3810", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54065,7 +54065,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -54076,7 +54076,7 @@ } }, { - "id": "1c14653f-f615-488d-89ee-199f6d150fe1", + "id": "dc7d866e-b3be-4261-9ea0-48cabdfcb8b6", "name": "IAI Identity Outliers Unignore", "request": { "name": "IAI Identity Outliers Unignore", @@ -54119,7 +54119,7 @@ }, "response": [ { - "id": "a411774d-5f89-478a-a4cb-eb449a832f7c", + "id": "99f30ce1-2e11-489d-b377-1cc1c378c20a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -54166,7 +54166,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e22accdd-9e7d-43f8-a176-6c9b120e389f", + "id": "815f77cb-26ff-414a-97ef-d5994d6249e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54218,12 +54218,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57f07880-d3d7-4191-8015-5074400e4097", + "id": "ddaacb05-4176-46a1-a245-467c1bdce77c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54280,7 +54280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccd2172a-0ac2-4d1f-8725-fbec03db2af1", + "id": "6fbb8fca-c1e6-41f1-bdfe-8c95823eb886", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54332,12 +54332,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5bace9f7-e02d-4c09-a026-c678b2b4f31b", + "id": "c1c9629b-54ad-4db2-bbf6-97635964a984", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54394,7 +54394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce67ba07-eaf2-4408-9544-123961867d17", + "id": "8ead5235-f615-4441-979e-9998a887888c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54446,7 +54446,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -54457,7 +54457,7 @@ } }, { - "id": "0864358a-f523-4f6f-90b2-f90c1937535b", + "id": "a3dece9f-b690-4ded-993a-7aa3db2064c4", "name": "IAI Identity Outliers Export", "request": { "name": "IAI Identity Outliers Export", @@ -54481,7 +54481,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -54497,7 +54497,7 @@ }, "response": [ { - "id": "5beae03f-7599-466c-953d-b0adb1a89d85", + "id": "dd2d369e-0afd-4767-ae93-b0bb9594cfca", "name": "Succeeded. Returns zip of 2 CSVs to download. 1 CSV for ignored outliers and 1 for non-ignored outliers", "originalRequest": { "url": { @@ -54516,7 +54516,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -54551,7 +54551,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1facd14f-914e-4d23-bf1b-32ed947971a5", + "id": "962c7d68-d055-4dfc-b64e-90b299c32e56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54570,7 +54570,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1ead2739-2dbd-44ec-a56c-c448a3555c37", + "id": "535d7c1e-0266-4a0a-bc65-555eef5036ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54624,7 +54624,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -54659,7 +54659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "773282a7-1bd5-41c5-95d1-e2546d34d2d4", + "id": "cb26951f-50a3-4857-98d5-83230e8982c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54678,7 +54678,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -54708,12 +54708,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b1aa8751-ec07-40b2-a736-a9da3f15fd00", + "id": "fae0736e-6352-462b-8a31-dfe849fd9502", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54732,7 +54732,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -54767,7 +54767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f790fff9-bb41-497b-beb1-e6f4c1430370", + "id": "a5fbe7ae-1c10-4f14-8703-7f584e161340", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54786,7 +54786,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -54816,7 +54816,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -54827,7 +54827,7 @@ } }, { - "id": "472aa406-d3b4-46c3-bc21-547ea10dbc8c", + "id": "239f22ef-53e9-431d-a167-ab7f42e61908", "name": "Get identity outlier contibuting feature summary", "request": { "name": "Get identity outlier contibuting feature summary", @@ -54864,7 +54864,7 @@ }, "response": [ { - "id": "af103791-68e8-48cd-bba5-2554b22ae4bb", + "id": "4d06ccc7-d19c-498d-b887-af28c6fe7142", "name": "Succeeded. Returns selected contributing feature summary for an outlier", "originalRequest": { "url": { @@ -54912,12 +54912,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\": \"FLOAT\"\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\": \"FLOAT\"\n }\n ],\n \"featureDefinition\": \"\",\n \"featureExplanation\": \"\",\n \"peerDisplayName\": \"\",\n \"peerIdentityId\": \"\",\n \"accessItemReference\": {}\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea817a64-db89-4c99-ae05-48b9b5306ab3", + "id": "27e299b5-fa87-4434-816b-494aeeb4260c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54956,12 +54956,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc78dd9f-0d5a-473d-b56a-a6500dd35c3a", + "id": "aa17a8ea-852b-468d-b044-cb10b48f3537", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55005,7 +55005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22881139-dd41-4d8b-8dc5-a68a25d5cde1", + "id": "5b707450-e622-46ee-8e77-59e76a4a10a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55044,12 +55044,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0bca2c6f-6e7e-4602-bf31-6241dd585a79", + "id": "0ae6c433-68b6-436c-ac4e-679004d1f739", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -55088,12 +55088,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d6a2536-16dd-4aa1-9d11-44b33aecd43e", + "id": "525c1b6a-0c26-47c9-8a2d-b4cab3325579", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55137,7 +55137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5446d2c3-32ee-451f-87a6-b7952f7859df", + "id": "63cf23af-8269-44a8-a41b-5c4a17d3750f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55176,7 +55176,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -55193,7 +55193,7 @@ "description": "", "item": [ { - "id": "b23bb412-e5de-4648-bf87-1695039d4090", + "id": "50fd19dd-48ea-4b10-af06-db24ace3cfd2", "name": "Identity Outliers List", "request": { "name": "Identity Outliers List", @@ -55259,7 +55259,7 @@ }, "response": [ { - "id": "2c9b2115-b1e6-49ae-90e7-1433dd674505", + "id": "3daff713-e117-4ddd-a8dd-7a13ad49c3f1", "name": "List of identities that are not included in peer groups.", "originalRequest": { "url": { @@ -55327,12 +55327,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"type\": \"\",\n \"peer_group_id\": \"\",\n \"attributes\": {\n \"ea9fd\": {},\n \"cillum909\": {},\n \"voluptate_c\": {}\n }\n },\n {\n \"id\": \"\",\n \"type\": \"\",\n \"peer_group_id\": \"\",\n \"attributes\": {\n \"dolor__99\": {}\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"type\": \"\",\n \"peer_group_id\": \"\",\n \"attributes\": {\n \"minim_c\": {},\n \"sunt59\": {},\n \"dolore_6d\": {}\n }\n },\n {\n \"id\": \"\",\n \"type\": \"\",\n \"peer_group_id\": \"\",\n \"attributes\": {\n \"irure__\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "13b1e41d-f944-4708-8e3f-7846826d949c", + "id": "0c9dcc3e-10c6-424c-b774-348466cf7e79", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55400,12 +55400,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d4f4d07-863b-4c54-b1b4-a6b36a8c973a", + "id": "b124477d-0a4a-4ce3-8129-6201c6eb039d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55478,7 +55478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c92d75ce-eada-4810-82c8-39f425043956", + "id": "95bd073f-03b8-4b0e-9314-2e0ca1eeaabc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55546,12 +55546,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d47ea17-fb04-466a-a1fe-281617fb9b61", + "id": "01568f62-8881-4cf8-883c-37998ec944a5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55624,7 +55624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2f67561-9232-4d80-b90d-40c6a0fa6146", + "id": "4bf91b21-1b78-4c24-b635-3fe2a12392aa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55692,7 +55692,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -55709,7 +55709,7 @@ "description": "", "item": [ { - "id": "f50f993d-a401-4804-a05b-b14ed1f15622", + "id": "334d3ff9-ecf8-4b66-9a5a-dbd8e3595e4c", "name": "Returns a Recommendation Based on Object", "request": { "name": "Returns a Recommendation Based on Object", @@ -55741,7 +55741,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\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\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55752,7 +55752,7 @@ }, "response": [ { - "id": "e8251deb-5408-46c8-88b9-5c9000a6688c", + "id": "4a22cc4b-6905-4bb0-a1e2-f00be931f475", "name": "The recommendations for a customer", "originalRequest": { "url": { @@ -55787,7 +55787,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\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\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55804,12 +55804,12 @@ "value": "application/json" } ], - "body": "{\n \"response\": [\n {\n \"request\": {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n },\n \"recommendation\": \"MAYBE\",\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 \"estba\": \"\",\n \"dolorec58\": \"\"\n },\n \"threshold\": \"\",\n \"identityAttributes\": {\n \"cupidatat_9d5\": {\n \"value\": \"\"\n },\n \"nostrud_6_5\": {\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\": \"ACCESS_PROFILE\"\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 \"quisb\": \"\"\n },\n \"threshold\": \"\",\n \"identityAttributes\": {\n \"sunta\": {\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 \"ea8\": \"\"\n },\n \"threshold\": \"\",\n \"identityAttributes\": {\n \"adipisicinga4\": {\n \"value\": \"\"\n },\n \"aliquip_48a\": {\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\": \"ACCESS_PROFILE\"\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 \"do_4b\": \"\"\n },\n \"threshold\": \"\",\n \"identityAttributes\": {\n \"aliquip0b\": {\n \"value\": \"\"\n }\n },\n \"featureValues\": {\n \"feature\": \"\",\n \"numerator\": \"\",\n \"denominator\": \"\"\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15e36020-a946-4061-8616-0ad7930222eb", + "id": "82512d23-d101-45a9-938c-13635cbf7faf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55844,7 +55844,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\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\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55861,12 +55861,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "371d4d24-c739-40f8-8109-5abce80ba6d4", + "id": "6edce181-7eb6-4c10-a583-70602b728bef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55901,7 +55901,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\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\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55923,7 +55923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe3b5f2-502e-4925-97fd-458b6cb159c5", + "id": "7a7e9554-6bdd-45e1-88fc-94b6e73c5613", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55958,7 +55958,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\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\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -55975,12 +55975,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bce98daf-b805-4125-893b-6e5c74289dad", + "id": "facc7a5a-8395-491a-a8f7-79618c98a619", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56015,7 +56015,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\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\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -56037,7 +56037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffabe37a-975f-440a-a4a7-fd19fb8bfb36", + "id": "11052f6b-68ef-4de9-b95d-27c90eb0e307", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56072,7 +56072,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"requests\": [\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\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\": \"ACCESS_PROFILE\"\n }\n },\n {\n \"identityId\": \"\",\n \"item\": {\n \"id\": \"\",\n \"type\": \"ROLE\"\n }\n }\n ],\n \"excludeInterpretations\": \"false\",\n \"includeTranslationMessages\": \"false\",\n \"includeDebugInformation\": \"false\",\n \"prescribeMode\": \"false\"\n}", "options": { "raw": { "headerFamily": "json", @@ -56089,7 +56089,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -56100,7 +56100,7 @@ } }, { - "id": "965448fc-1ef0-460d-aea7-fa19162ad622", + "id": "fa64e8bb-bbcb-4b76-9082-f2b886da2a05", "name": "Get certification recommendation config values", "request": { "name": "Get certification recommendation config values", @@ -56130,7 +56130,7 @@ }, "response": [ { - "id": "e516e46f-63b7-460a-ab24-b5e07e8c521a", + "id": "c3fdc320-c352-48fc-887e-14326b7e8366", "name": "Cert recommendation configuration attributes", "originalRequest": { "url": { @@ -56174,7 +56174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f214c76-532b-471d-825e-9f791cb30cee", + "id": "7d8d7f11-3e36-497e-ad4a-659267d71e81", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56213,12 +56213,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2a5c7b8c-4bd1-4553-b3cc-9f210d447209", + "id": "7511cf49-4ade-4c11-99db-407fec3e3d59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56262,7 +56262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce907257-66e2-4c62-977f-174152996ae9", + "id": "8fd0582e-6009-4785-941b-0f3f11cdc0a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56301,12 +56301,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f50c99a-1b27-4861-a4b2-ab22aa390a33", + "id": "db15786d-7206-4db1-bb02-08448ca7ff3f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56345,7 +56345,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -56356,7 +56356,7 @@ } }, { - "id": "b4130980-8794-45c1-be66-c5fc75ef8d87", + "id": "5234d9c7-3bc0-4b51-abea-777ddbfb161e", "name": "Update certification recommendation config values", "request": { "name": "Update certification recommendation config values", @@ -56399,7 +56399,7 @@ }, "response": [ { - "id": "7f03f671-5b03-4024-bc2d-b7e7bbb6e161", + "id": "42a5726d-cdbe-49e6-b011-c7dce9474bab", "name": "Cert recommendation configuration attributes after update", "originalRequest": { "url": { @@ -56456,7 +56456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a3f48d3-fffe-4064-8497-9dc5b555f407", + "id": "1074a324-a37d-4f63-aac2-5c715d7817b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56508,12 +56508,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "65c6d6ed-3a52-44af-9ec9-ce06afa05338", + "id": "3e022991-fec1-4736-99b6-8bf17d282130", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56570,7 +56570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1da62607-f5b1-4a99-87fc-3d0944928921", + "id": "0527b3e6-6578-4b04-90ee-1131df5fbe5d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56622,12 +56622,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8513f822-fe8f-4867-94b6-28d392a359e2", + "id": "7a35b8f4-80ad-4eec-9cae-c1ad2e7513a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56679,7 +56679,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -56690,7 +56690,7 @@ } }, { - "id": "58a7fc87-e31c-4666-a8f5-86241a38e08c", + "id": "d95f8437-0513-460f-a38b-93af472a9b29", "name": "Get Message catalogs", "request": { "name": "Get Message catalogs", @@ -56710,7 +56710,7 @@ "variable": [ { "type": "any", - "value": "access-request-recommender", + "value": "recommender", "key": "catalog-id", "disabled": true } @@ -56727,7 +56727,7 @@ }, "response": [ { - "id": "44cfbb78-f896-44d4-9ef6-07adb9d64c32", + "id": "deed3e57-9e84-4529-a93c-63d1ad62d549", "name": "The message catalogs based on the request headers", "originalRequest": { "url": { @@ -56771,7 +56771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3914086-cd17-4520-8748-d8995cb68f4f", + "id": "ee3deb44-52e5-491d-b45c-5d9380d41a26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56810,12 +56810,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d707f13d-adc2-4446-911d-92aaabad97b9", + "id": "a7fb0a69-bbdb-4185-8559-59fcdeba355e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56859,7 +56859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bc2e320-8287-45f2-8164-de4a55c82ca0", + "id": "82b094bb-688b-445e-bdc6-6c689f5ed0ad", "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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1775417-01cf-44db-bf82-403cc222efa0", + "id": "f7332e11-4e03-4232-ab7a-ca730b81de78", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56947,7 +56947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d59cfdde-efd8-4360-b7c8-a792a39792e8", + "id": "c6137a73-a61c-46ee-957d-0ab02ae3b35f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56986,7 +56986,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -57003,7 +57003,7 @@ "description": "", "item": [ { - "id": "4fd67b0a-6767-48b5-8960-25b4fe583e5b", + "id": "258da4db-5542-4e88-afc4-68a974c93e38", "name": "Create a role mining session", "request": { "name": "Create a role mining session", @@ -57045,7 +57045,7 @@ }, "response": [ { - "id": "e176af76-dbfa-41aa-aa59-304c231a3249", + "id": "7dd05768-a6ec-457d-8e27-601d9dbfe6fc", "name": "Submitted a role mining session request", "originalRequest": { "url": { @@ -57096,12 +57096,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\": \"SPECIALIZED\"\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\": \"COMMON\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b988dc3-811d-420c-b026-ce177a78bb13", + "id": "a4d8130b-1d38-4ddc-af2b-5177cbd2fd47", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57152,12 +57152,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "73612f9a-435e-4487-bda1-8f5c438f1939", + "id": "3e80d495-903a-4034-aff6-7d63d6d55ec4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57213,7 +57213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3fa4d30-5ff7-47a4-8a2a-4b67f63e82d2", + "id": "edaddab5-3bbc-4ba2-bf95-03b54db50301", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57264,12 +57264,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d28e650-7e99-40a7-9735-a53f989846c3", + "id": "52c17ad0-d228-4d6a-a17b-98f570c1dfd2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57325,7 +57325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3259e127-1d17-46bf-8f77-a64e628cd46b", + "id": "b653b319-1695-47cc-8533-4f893e3bc378", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57376,7 +57376,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -57387,7 +57387,7 @@ } }, { - "id": "120fc0e3-b6df-490c-a195-c38423b558d8", + "id": "194b18e3-d75e-4be4-a376-61ac61703874", "name": "Retrieves all role mining sessions", "request": { "name": "Retrieves all role mining sessions", @@ -57462,7 +57462,7 @@ }, "response": [ { - "id": "31be5a09-761e-45a5-8ceb-3a0962c65443", + "id": "c46a181d-f8c7-46d5-b4a0-e1d70d51ba52", "name": "Succeeded. Returns all role mining sessions that match the query parameters.", "originalRequest": { "url": { @@ -57546,12 +57546,12 @@ "value": "application/json" } ], - "body": "[\n {\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 },\n {\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 }\n]", + "body": "[\n {\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 },\n {\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 }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c8c1d6b-2cec-45ee-b355-27d78fe22e5d", + "id": "857bf99a-a7c2-4d2a-b074-a910440bcd43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57635,12 +57635,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9ee6a44-adc3-4724-83c1-c520265f34f9", + "id": "ff169926-61bd-453c-a0c4-b38571859ed8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57729,7 +57729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0175215b-78ae-4478-a31d-5e9c51434e92", + "id": "c6f07487-c05b-4a7e-a091-d58145d6ca2f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57813,12 +57813,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "339a9958-a46d-49b9-92f8-4f6e8cb7cbdd", + "id": "343974b6-9b5c-40a6-9c42-3f976240e2ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57907,7 +57907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab56a33f-c879-486f-bca9-79ffa24768d8", + "id": "1cdbc0f5-3783-4c47-88cd-7432eb4fca8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57991,7 +57991,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -58002,7 +58002,7 @@ } }, { - "id": "6c0ef62b-7026-47bf-b0a4-89c299412e52", + "id": "9c774833-e304-4b4d-97a1-67490cd9a0fc", "name": "Patch a role mining session", "request": { "name": "Patch a role mining session", @@ -58041,7 +58041,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58052,7 +58052,7 @@ }, "response": [ { - "id": "70821522-df6d-4568-b2eb-3cd4aeab7c4f", + "id": "c219a03a-2cbf-4373-b62f-69d1ce4defd4", "name": "Success", "originalRequest": { "url": { @@ -58087,7 +58087,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58109,7 +58109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5d9eff6-2c12-41dd-96e4-ddc8bd94843b", + "id": "c7e00b4b-bc04-4993-a06a-f7d6c509dad7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58144,7 +58144,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58161,12 +58161,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "62c2732c-4ea3-4ada-b1f8-416c4339f95f", + "id": "e19f63ce-8ce7-48da-9c24-fd7af78c1bf4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58201,7 +58201,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58223,7 +58223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e89d2415-daf3-45b8-b13d-4ef81020b620", + "id": "b2407732-11e1-4613-8ad1-fd985a51785b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58258,7 +58258,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58275,12 +58275,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d531c03-1c02-4f01-826b-2e1c0476e36f", + "id": "f1ca636c-3e11-4e63-9f85-39c0e26be2dd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58315,7 +58315,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58332,12 +58332,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85a28748-985b-48af-a2a6-7ae8e21b7cf8", + "id": "41747731-a64f-43e9-bbd0-f29944ac1efe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58372,7 +58372,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58394,7 +58394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07eef0a7-bb56-47f4-ae15-862d2163451d", + "id": "8e80c8dd-9392-4827-bf6b-3cde03753d18", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58429,7 +58429,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -58446,7 +58446,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -58457,7 +58457,7 @@ } }, { - "id": "48cf2389-df4a-47fd-aff0-03706080f974", + "id": "ece4e2b8-f08a-4522-a9b5-0fe045a26ad4", "name": "Get a role mining session", "request": { "name": "Get a role mining session", @@ -58494,7 +58494,7 @@ }, "response": [ { - "id": "fb7a3103-460b-436e-b6d1-e2ae3608b530", + "id": "dd9b88af-ec86-4ee2-a85d-b4bccd21df02", "name": "Returns a role mining session", "originalRequest": { "url": { @@ -58533,12 +58533,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\": \"SPECIALIZED\"\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\": \"COMMON\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "322f9d52-83c2-4596-82de-f8e04969bf11", + "id": "e7d3286c-c4a3-4be3-9f57-07ab309d70bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58577,12 +58577,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0e35b742-16da-470e-a950-3959d909c575", + "id": "3c83271b-1e33-40b2-85d1-f3a9142d7e59", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58621,12 +58621,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4d82225a-5436-4976-9f1c-614b136aeb50", + "id": "8392b11c-cf86-47ae-8c6f-4a8c437d87aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58665,12 +58665,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e4a4aab-49be-4e44-9569-4083df9074f6", + "id": "ed3144b5-b247-4278-ae11-6e5b1dc35271", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58709,12 +58709,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a13febf-209f-4a3a-9cc1-74feeecc4b05", + "id": "642bcdf9-3a8e-4dbf-a6e7-24f60f523a4a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58758,7 +58758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f3c24df-6aed-48fe-9cd5-6d5911fc8f64", + "id": "56691bb0-c154-4903-8860-bf726b8791f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58797,7 +58797,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -58808,7 +58808,7 @@ } }, { - "id": "c811fe5d-03ea-4048-bb27-fda62e601386", + "id": "308fdb88-84e1-4522-9e74-e8204f00a08d", "name": "Get role mining session status state", "request": { "name": "Get role mining session status state", @@ -58846,7 +58846,7 @@ }, "response": [ { - "id": "7c5e1681-fa1d-45ce-acfd-ac5f103f9920", + "id": "0aada193-9d46-4e7c-8aa2-b63b7ed7a2b5", "name": "Succeeded. Returns session status", "originalRequest": { "url": { @@ -58891,7 +58891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08aa65a8-1a50-4544-bdb4-ca16145c68cd", + "id": "e02a4109-44fe-4a5d-b983-fb01e96939aa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58931,12 +58931,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "647a8139-bae6-4928-bc02-0695222980b1", + "id": "0ad8205b-7f61-48cb-94f9-668e79bc7916", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58981,7 +58981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2785458f-7417-4d97-9880-64880b3e5201", + "id": "c659bc3c-f085-4bbe-ac19-5712cfb3f599", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59021,12 +59021,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "628c1294-b9b2-4ea3-9f12-1954c3711bea", + "id": "b31f6005-96cd-4929-ab08-a0faf7392dee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59066,7 +59066,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -59077,7 +59077,7 @@ } }, { - "id": "6a0bb6e4-5045-4dc9-830b-41cbc1e1fd72", + "id": "a27ac87a-8174-4505-b15e-a67cfd65e941", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -59161,7 +59161,7 @@ }, "response": [ { - "id": "b4b4fc32-78c8-44c1-aff8-54e3c4b47e2e", + "id": "295bcc19-166d-4e93-a1e0-47680fcb8865", "name": "Succeeded. Returns a list of potential role summaries for a role mining session.", "originalRequest": { "url": { @@ -59247,12 +59247,12 @@ "value": "application/json" } ], - "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\": \"COMPLETE\",\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\": \"FAILED\",\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": "6523b0d7-57e9-4db6-bf27-bc019a9386ad", + "id": "0bbb794d-69a8-4dee-9348-c668d3fd6919", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59338,12 +59338,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f11fb04a-224d-439f-b131-aaf86be455ab", + "id": "8415e8db-64ae-4a28-8640-8ab976c5aa9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59434,7 +59434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c15df85-6a40-4643-9095-b46979b70617", + "id": "b3d9d353-f74a-408d-b0f1-2cb0ebef2b3d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59520,12 +59520,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d50983b2-0cd9-40aa-a094-c7b23a921929", + "id": "85376585-6462-4004-945c-49dc30cc8032", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59616,7 +59616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4448bfdf-4eb6-4c9e-bf19-44b0e30f0773", + "id": "7952cc21-f0e0-469c-b61a-e08da8d046a0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59702,7 +59702,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -59713,7 +59713,7 @@ } }, { - "id": "cb99b581-5863-479e-9041-7b7eb2c567bc", + "id": "f19c156f-39ba-460c-97d3-2f285d81dd11", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -59758,7 +59758,7 @@ }, "response": [ { - "id": "c9b289c4-6bd8-41a5-9c30-5c56e80a4a38", + "id": "b4afb082-bd0c-4582-8f99-9aed32d6bce1", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -59799,12 +59799,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 \"ipsum39\": \"\"\n },\n {\n \"irure_219\": \"\",\n \"ut_f92\": \"\"\n }\n ]\n },\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"incididunt_082\": \"\"\n },\n {\n \"commodo7e\": \"\",\n \"ea_361\": \"\",\n \"cillumac\": \"\"\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\": \"COMMON\",\n \"state\": {\n \"state\": \"\"\n },\n \"scopingMethod\": {\n \"state\": \"\"\n }\n },\n \"type\": \"SPECIALIZED\"\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 \"incididunt_b\": \"\",\n \"sitd\": \"\"\n },\n {\n \"ameta\": \"\"\n }\n ]\n },\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"Ut_30\": \"\",\n \"nulla_df\": \"\",\n \"in_5\": \"\",\n \"cupidatat_9\": \"\"\n },\n {\n \"Lorem24\": \"\",\n \"nostrud_433\": \"\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"name\": \"\",\n \"provisionState\": \"POTENTIAL\",\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\": \"COMMON\",\n \"state\": {\n \"state\": \"\"\n },\n \"scopingMethod\": {\n \"state\": \"\"\n }\n },\n \"type\": \"COMMON\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "38f71b96-ed27-4f25-9e2c-9aff8af134a7", + "id": "19022149-a4a1-4ccf-885a-6e1178e996f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59845,12 +59845,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1bacc5f-e2af-4cae-90f5-789a9207e1c4", + "id": "21c804e3-234f-4923-a601-efe8af9283fc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59896,7 +59896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9cc02ff-b1a1-4d78-b0fb-d69b5555b68f", + "id": "11fac8b5-0ab2-4ed8-a9e2-b604776419e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59937,12 +59937,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d9bace7c-4ab4-45dd-b00a-7ab477190a5b", + "id": "9bd598e0-adef-4faf-8c93-bb5acf68a07b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59988,7 +59988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0af1fab1-c4ed-4105-a9c8-30d8cf1c5529", + "id": "d4d01a5f-6b16-4807-bf13-34adf122a7b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60029,7 +60029,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -60040,7 +60040,7 @@ } }, { - "id": "095be09a-8d0a-4ad1-a085-6daaa57c37dc", + "id": "4f89ad36-d9e1-46b1-a56d-2f5b05593252", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -60098,7 +60098,7 @@ }, "response": [ { - "id": "b8e27432-489a-468c-8983-30b9408f98c6", + "id": "b0f5cdee-e260-4b21-86e9-b9f34d127d36", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -60157,7 +60157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6f068db-d240-48a5-bd84-b586d9217252", + "id": "f1bac2c5-f05a-41b6-a873-5eb3c3882e82", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60211,12 +60211,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b078460f-21fe-4d57-9c0b-9a4890cb6a5e", + "id": "32ebc8b4-10c8-460f-ae45-c6f18b1c46e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60275,7 +60275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eebf84d4-6f1d-4a26-85ea-281a3b384941", + "id": "a54f0307-e33a-4ce0-a383-50a53f509fbc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60329,12 +60329,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97e7b7d3-e468-4e10-b071-8e1b7fc62d86", + "id": "6bd59355-d50e-45a7-82ab-a8568a07811d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -60388,12 +60388,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a8a36899-1c80-49ac-bd96-88f674da9aaf", + "id": "df017fa5-560d-4735-bdac-c3dace39a8b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60452,7 +60452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bba9ccc0-e56b-4e05-b37f-5e50f0f064ef", + "id": "461c5a77-81c1-4149-94d8-0c625cbac287", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60506,7 +60506,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -60517,7 +60517,7 @@ } }, { - "id": "9a7b632b-bc1e-4227-a5c1-6bedfd43dd97", + "id": "6153f553-9ed4-45c2-8f38-0c30b592276a", "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", @@ -60591,7 +60591,7 @@ }, "response": [ { - "id": "68b16e7b-77af-4663-a566-0fde694f984d", + "id": "3ae44917-8534-4422-8151-ba2b41500e27", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -60666,7 +60666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcaaa9d2-b29f-4ffb-b6c4-9c3b19ad21d3", + "id": "b54912d0-c694-49d9-9730-a7a189620361", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60736,12 +60736,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2809eaf8-fadd-48e3-966a-574c1bbc5faa", + "id": "399f412e-c20d-4421-a90a-5185114b4373", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60816,7 +60816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3d6d18b-f2d3-47b4-a187-9b025c3adb11", + "id": "23af60c1-bda0-4010-b2fe-56444d6a19ea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60886,12 +60886,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6ae905e-1fb5-4e44-aa06-c5527fddf193", + "id": "b7f1b01e-ae36-4ed4-98e7-6b020aaff80a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60961,7 +60961,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -60972,7 +60972,7 @@ } }, { - "id": "3ec77752-8992-47da-8249-7a009c939094", + "id": "f9d9d6cb-64b0-467c-98d0-704f4f602bf8", "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", @@ -61073,7 +61073,7 @@ }, "response": [ { - "id": "bb87a604-16a3-4efe-a519-b7155db25240", + "id": "ae86e87a-da0c-4fb0-ad5a-507c784ced3b", "name": "Succeeded. Returns a list of entitlements for a potential role.", "originalRequest": { "url": { @@ -61175,7 +61175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "979b24b9-2832-42bc-8a4c-af75a069008c", + "id": "d46cd850-2774-479b-845b-3d1e8afb2950", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61272,12 +61272,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dbf3c958-c4ec-4401-94d7-9db4cfd28e05", + "id": "35de0306-698e-4ad6-bc32-82fa8809370a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61379,7 +61379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e78b0d9c-930c-4d3e-ba54-2861b660d337", + "id": "08d83e98-cd9d-4ec6-912a-2e8262017693", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61476,12 +61476,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93f42d34-99be-49b6-a320-58e0a467708e", + "id": "6d947e19-badc-4436-9963-d144df061e0a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61578,7 +61578,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -61589,7 +61589,7 @@ } }, { - "id": "fe447eaf-0e9b-4cfd-a5b2-829e15ae9567", + "id": "8d867202-738d-41e6-a559-95222dee08f7", "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", @@ -61645,7 +61645,7 @@ }, "response": [ { - "id": "4de3215c-d20e-4289-a065-a6de26334593", + "id": "962d4fdb-166c-42fc-a9a0-c720cc23fed8", "name": "Succeeded. Returns a map containing entitlement popularity distribution for a potential role.", "originalRequest": { "url": { @@ -61697,12 +61697,12 @@ "value": "application/json" } ], - "body": "{\n \"sed0b1\": \"\"\n}", + "body": "{\n \"ex4\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f73712e1-9537-4848-9f0e-7a9ddaf47db2", + "id": "97123f36-d148-44b3-94b4-7bb12da00aec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61754,12 +61754,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1990ba46-da47-4dce-b98b-924eac561dbe", + "id": "8d057344-f111-437d-b276-5d1597de07a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61816,7 +61816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b7b8ee4-7f04-43eb-851f-6fc9c0d1b158", + "id": "4716c108-9909-430f-9b83-43a325910993", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61868,12 +61868,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d8b301b-80e1-4d4f-be52-9c8d0ea4e080", + "id": "59263eb8-c081-444c-96ff-4a49577aa10a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61925,7 +61925,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -61936,7 +61936,7 @@ } }, { - "id": "ae4101c4-f959-45a7-80b7-d8c62df43873", + "id": "d7ce5309-fc45-4d73-a427-77731f0fd95c", "name": "Edit entitlements for a potential role to exclude some entitlements", "request": { "name": "Edit entitlements for a potential role to exclude some entitlements", @@ -61995,7 +61995,7 @@ }, "response": [ { - "id": "68bf653c-cc1b-43aa-9488-74f36b961385", + "id": "f8bf57fd-7d24-4776-8146-bb6b2aa5a95a", "name": "Adds or removes entitlements from a potential role's entitlement exclusion list.", "originalRequest": { "url": { @@ -62050,12 +62050,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 \"ipsum39\": \"\"\n },\n {\n \"irure_219\": \"\",\n \"ut_f92\": \"\"\n }\n ]\n },\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"incididunt_082\": \"\"\n },\n {\n \"commodo7e\": \"\",\n \"ea_361\": \"\",\n \"cillumac\": \"\"\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\": \"COMMON\",\n \"state\": {\n \"state\": \"\"\n },\n \"scopingMethod\": {\n \"state\": \"\"\n }\n },\n \"type\": \"SPECIALIZED\"\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 \"incididunt_b\": \"\",\n \"sitd\": \"\"\n },\n {\n \"ameta\": \"\"\n }\n ]\n },\n {\n \"attributeName\": \"\",\n \"distribution\": [\n {\n \"Ut_30\": \"\",\n \"nulla_df\": \"\",\n \"in_5\": \"\",\n \"cupidatat_9\": \"\"\n },\n {\n \"Lorem24\": \"\",\n \"nostrud_433\": \"\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"\",\n \"\"\n ],\n \"name\": \"\",\n \"provisionState\": \"POTENTIAL\",\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\": \"COMMON\",\n \"state\": {\n \"state\": \"\"\n },\n \"scopingMethod\": {\n \"state\": \"\"\n }\n },\n \"type\": \"COMMON\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1faa097d-d0f4-4779-85f1-c72868365f73", + "id": "cc42e32f-86e7-4562-85bf-42c000464f45", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62110,12 +62110,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "82addd37-d97d-4e15-970a-8aeabb4a4e3b", + "id": "97352865-c713-467f-b0b1-8f64d1b97384", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62175,7 +62175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d94f0fb-72d0-4533-aef5-f387b8a3ea86", + "id": "b5e8470d-ccd0-4c8d-a5db-c9397572f42d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62230,12 +62230,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3025e1a3-f3d0-4b48-8e43-35192b6f1c53", + "id": "e13d69de-065b-4117-9a01-563dfaca597f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62290,7 +62290,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -62301,7 +62301,7 @@ } }, { - "id": "2c013474-c4b4-4918-b20c-7db504aed9a4", + "id": "f720c672-7457-4149-8227-31ec5171051c", "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", @@ -62393,7 +62393,7 @@ }, "response": [ { - "id": "a2457128-f57c-44b9-b711-987547a01b0a", + "id": "d95513d2-3992-4ba7-9ad3-6ebdbed84daf", "name": "Succeeded. Returns a list of identities for a potential role.", "originalRequest": { "url": { @@ -62481,12 +62481,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"aliquip__4\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"ipsum90\": \"\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"aliquip_b1\": \"\",\n \"veniam_10\": \"\",\n \"dolor_2\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"proident_7c\": \"\",\n \"in__8\": \"\",\n \"Lorem_c7\": \"\",\n \"officia20d\": \"\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4df2177f-6161-405f-9398-3969b974778c", + "id": "edb4222f-0c5d-411b-925a-6b8b5cd20c9e", "name": "Client Error - Returned if the request body is invalid.", "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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52917918-bd34-4487-81c5-3b0d1c194219", + "id": "dd3e59bb-5cb8-42ac-9210-d2641c204961", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62672,7 +62672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9a6c830-9a36-4284-bc75-3c832baa0396", + "id": "dcf7cf75-4bae-4eff-9be6-77dc73821ceb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62760,12 +62760,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "efc7bd88-19af-44c8-9160-2fba26c23c30", + "id": "2c026723-cc08-4d76-b212-a5d05c449b38", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62853,7 +62853,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -62864,7 +62864,7 @@ } }, { - "id": "6c19a669-5ce0-4acd-8ba3-3067d96386fc", + "id": "5120df04-8c1e-48c9-99ea-4e252e6116ad", "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", @@ -62910,7 +62910,7 @@ }, "response": [ { - "id": "2eaf5de3-aa16-4b4a-958b-72ddf15735f8", + "id": "39907c3b-6121-4756-a2cc-12e824b47bda", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -62957,7 +62957,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c0d7dafb-4cfc-4356-8ef5-c2963ad61434", + "id": "0ef3cd25-24de-4fa8-a40d-8288c3537acf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62999,12 +62999,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c54aebf2-6f2e-4f86-95b3-891e507aa9e8", + "id": "fbbc37df-61fe-490b-8026-91d464b1b0ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63051,7 +63051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f85fee6f-4e06-465d-b3cf-413ecb40deba", + "id": "7feccb59-1149-493c-ae9b-07aa1701484a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63093,12 +63093,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b6d3b3cb-1505-4526-80cb-a0ce5aed8b0c", + "id": "8819b6f1-bfce-4112-95d9-26823cff3e3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63140,7 +63140,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -63151,7 +63151,7 @@ } }, { - "id": "71af56b6-b705-4558-97c9-eb72d71340b1", + "id": "cc7f348a-7a22-4335-ad34-6fb0148b2a85", "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", @@ -63210,7 +63210,7 @@ }, "response": [ { - "id": "8880f1bd-c4b1-4860-b5fb-0d053c74e66e", + "id": "a12ae43b-8c6c-4429-b29b-965c833c5a9c", "name": "Job Submitted. Returns a reportId that can be used to download the zip once complete", "originalRequest": { "url": { @@ -63265,12 +63265,12 @@ "value": "application/json" } ], - "body": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\",\n \"exportId\": \"\",\n \"status\": \"IN_PROGRESS\"\n}", + "body": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\",\n \"exportId\": \"\",\n \"status\": \"ERROR\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41695aed-152a-4680-9083-f1d0861754f2", + "id": "31bd6027-8178-490a-be88-7124e1ef542f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63325,12 +63325,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27e5b052-1940-428d-95e1-762334016a21", + "id": "1ccaf41d-2573-43a6-8088-96b4f4cb0724", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63390,7 +63390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc4f8596-ff95-44ce-b788-ab43fe165e26", + "id": "fe845b54-f525-4bc6-b451-a0e31c95311c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63445,12 +63445,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5b5bea2d-6f27-4447-a46f-be9e10a0e748", + "id": "5c4cd236-1089-44a6-a4e5-bdcfa9187935", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63505,7 +63505,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -63516,7 +63516,7 @@ } }, { - "id": "8d3d9582-2a55-41aa-9706-066ee327bf68", + "id": "362ff644-065d-4f43-907c-f106b193cee2", "name": "Retrieve status of a potential role export job", "request": { "name": "Retrieve status of a potential role export job", @@ -63569,7 +63569,7 @@ }, "response": [ { - "id": "b59bcad0-1854-4603-af31-88732d67fc53", + "id": "8b0a9e18-ce5c-469e-a8d1-eacc23603237", "name": "Success. Returns the current status of this export", "originalRequest": { "url": { @@ -63612,12 +63612,12 @@ "value": "application/json" } ], - "body": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\",\n \"exportId\": \"\",\n \"status\": \"IN_PROGRESS\"\n}", + "body": "{\n \"minEntitlementPopularity\": \"\",\n \"includeCommonAccess\": \"\",\n \"exportId\": \"\",\n \"status\": \"ERROR\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "820c4849-f78c-4c31-bed2-5bfc269db61e", + "id": "179de6e0-8015-4cc1-a19f-6600bfde5f66", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63660,12 +63660,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8dc171bb-d7f9-4165-8297-68fd14305491", + "id": "8d768bf9-d26c-464b-a135-d53c06ebb877", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63713,7 +63713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd4ecaea-a1a8-4dc7-9eb1-ff451400734e", + "id": "c7bba809-57e9-4ea4-bb5e-a4af51a54ea2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63756,12 +63756,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37dba9aa-d15f-443f-9dea-093832e47370", + "id": "80d8f6b0-4deb-4460-a742-b4645c1859ec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63804,7 +63804,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -63815,7 +63815,7 @@ } }, { - "id": "062eef67-d4ad-4fa3-8969-bb16a8801a72", + "id": "189763a2-d6eb-4ffb-b395-d3489934154a", "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", @@ -63869,7 +63869,7 @@ }, "response": [ { - "id": "c873bc52-0ac6-41ed-855a-65da79e19250", + "id": "9beb924f-ae37-42bd-8fcc-e36eec0e129b", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -63918,7 +63918,7 @@ "_postman_previewlanguage": "text" }, { - "id": "42e0cb83-d5c3-47c6-ac98-13e353f1d47f", + "id": "e17f269c-342e-4933-8d8b-c48d87528932", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63962,12 +63962,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5abc65fc-7ba5-4d1b-a028-97b7f1d7cfcd", + "id": "ed679ac3-4a69-4d73-980e-f6b6bfe02ea7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64016,7 +64016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93d40edb-d91a-43c6-be70-d5920e2e7dfd", + "id": "0fe4bd73-f90c-499a-8870-c0dc52570e6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64060,12 +64060,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ce525a7-84b1-4a2a-a352-6641b353fda1", + "id": "d849a915-ee8c-492c-8f93-9ed11842002a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64109,7 +64109,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -64120,7 +64120,7 @@ } }, { - "id": "ee91754e-c565-41db-8ebf-4a00d537aac0", + "id": "c6992ca7-044b-4462-8078-ba65a8486871", "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.", @@ -64198,7 +64198,7 @@ }, "response": [ { - "id": "edeb4ff2-9b56-4207-ba4b-b2246e936823", + "id": "713f2f83-dd44-4ccf-b3d6-01b6b811cf4a", "name": "Accepted. Returns a potential role summary including the status of the provison request", "originalRequest": { "url": { @@ -64272,12 +64272,12 @@ "value": "application/json" } ], - "body": "{\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}", + "body": "{\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7c8443a9-eac7-4d7c-9bdc-a8b7b8669210", + "id": "9d1feea2-4087-4405-883e-6f72e39b9ca4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64351,12 +64351,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e3742b51-5c2b-4ac5-af97-8c02a8ef9d39", + "id": "351dc5da-615f-4d18-8f19-35e91759e00c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64435,7 +64435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb9ac341-e254-4bd1-9bc8-af7885c311a2", + "id": "e6b83913-2ca8-4cc2-a1d1-6f087846c901", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64509,12 +64509,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eddc4e1c-c013-4adf-810a-a5b7f57887b6", + "id": "6a0a6f5d-039c-4fb3-8944-c4f8b560e1ea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64588,12 +64588,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7641e688-e42d-4fd3-a424-a77746d91f40", + "id": "3ea1a6d2-069f-4bd8-b4cc-0863104d0ef3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64667,7 +64667,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -64678,7 +64678,7 @@ } }, { - "id": "89e5c42f-9df1-4057-a829-8dc98443c8a4", + "id": "779af8c2-07b8-42ff-84cb-1a025fe43c90", "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", @@ -64770,7 +64770,7 @@ }, "response": [ { - "id": "35b5f1a4-511d-46cc-ba4d-d30ffade1bd8", + "id": "11c3cb90-d26f-449a-bce7-072592743808", "name": "Succeeded. Returns a list of excluded entitlements for a potential roles.", "originalRequest": { "url": { @@ -64863,7 +64863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d58193b-6edb-4c26-a0c6-6b9656bec8bd", + "id": "435b3f5f-e069-424b-8f09-0936f876906a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64951,12 +64951,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f50108d-5d7a-4156-9ca0-a7f95346edd9", + "id": "898a8744-cced-4eca-abf6-b3ec877698bc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65049,7 +65049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77881be5-69ee-4931-82c1-f5b8f44752ea", + "id": "d8f1fc4d-bc43-4c68-8b5b-89dff3261558", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65137,12 +65137,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb840bc4-58a1-40d1-8dae-a8bf239ae7b4", + "id": "eeba1f5f-8a7c-4283-bfca-13a6ca23f564", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65230,7 +65230,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -65241,7 +65241,7 @@ } }, { - "id": "31cf0675-3fb3-4848-9439-c536e2297276", + "id": "f8e3c2d8-e241-44a5-83ce-1e847d6a4c8c", "name": "Retrieves all draft roles", "request": { "name": "Retrieves all draft roles", @@ -65326,7 +65326,7 @@ }, "response": [ { - "id": "b821ac3f-feab-48bc-8aa4-0a8865437cee", + "id": "0743ef26-ab0f-4ff5-95c0-1ab3a9d5dc2c", "name": "Succeeded. Returns a list of draft roles for a role mining session.", "originalRequest": { "url": { @@ -65413,12 +65413,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\": \"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\": \"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\": \"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\": \"SPECIALIZED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb4eda8c-465c-4b32-9f6c-14e7c285a4bb", + "id": "c89b9490-16d5-4320-b7d0-9cf8e15ed499", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65505,12 +65505,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf45a044-5beb-4935-ae90-2c93eb33dc3c", + "id": "f7a92eeb-6bbf-4450-b77d-97db78b61069", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65602,7 +65602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "724c0a39-9193-4cdf-be4c-c5290807c942", + "id": "13871096-a3e6-411e-a38e-e2839a4d4c4a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65689,12 +65689,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "096f4563-6ebe-4efd-8778-759f2567c473", + "id": "74afc59c-6366-440f-9c44-99bc5b207cf0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65786,7 +65786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be644c76-7d4d-46a5-b090-e90a3daccc6d", + "id": "9e0384b3-bcc4-41d5-95bb-2ffb9b3bb318", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65873,7 +65873,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -65890,7 +65890,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": "d439bde7-2b4f-466a-8535-1c0e29e181f6", + "id": "85f6b7b4-e36e-443d-972c-66698046be19", "name": "Attribute synchronization for single identity.", "request": { "name": "Attribute synchronization for single identity.", @@ -65928,7 +65928,7 @@ }, "response": [ { - "id": "e1bafe67-1742-4efb-91ea-94d74ed109fa", + "id": "192c738e-86c7-4d13-8b91-9d9166495b00", "name": "An Identity Sync job", "originalRequest": { "url": { @@ -65968,12 +65968,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"status\": \"QUEUED\",\n \"payload\": {\n \"type\": \"\",\n \"dataJson\": \"\"\n }\n}", + "body": "{\n \"id\": \"\",\n \"status\": \"IN_PROGRESS\",\n \"payload\": {\n \"type\": \"\",\n \"dataJson\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bfe55888-3d2b-473b-b847-c93ae82fd64e", + "id": "50391c95-a686-4f66-a0f6-b5e78a386029", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66013,12 +66013,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d75513ce-0913-4dd6-999d-844c4b11ef12", + "id": "cae635de-f1e3-47f7-bdd0-6cca43363895", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66063,7 +66063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bef55da8-8a03-484f-b702-f148317f1b40", + "id": "51498d4d-6840-46b4-9c72-769b66dc1ced", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66103,12 +66103,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ace85f0-1393-4c38-aaec-41de7b53460a", + "id": "78dda86c-1ede-45c5-a990-35690ddee5f3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -66148,12 +66148,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bef546ed-e3b9-473b-91e3-aa8261882909", + "id": "ca41760f-a5cc-4c0a-95d3-4baa4d749bef", "name": "Too Many Requests - Returned in response to too many requests in 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": "2a327c8a-cb67-496f-bfbf-cb75a2d21df9", + "id": "691e6cc5-f559-4d35-8db2-fb8dbc696abc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66238,7 +66238,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -66249,7 +66249,7 @@ } }, { - "id": "fa6888e4-4ca6-47f0-a8d0-1e1f08599e9a", + "id": "04308381-f2d0-4ea5-a2f5-84808ed0c069", "name": "List Identities", "request": { "name": "List Identities", @@ -66333,7 +66333,7 @@ }, "response": [ { - "id": "2b7cd510-93b3-431c-bde6-2800d6a2b6c6", + "id": "0ae67f3f-71af-4255-a214-8735cf6923b9", "name": "List of identities.", "originalRequest": { "url": { @@ -66426,12 +66426,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"alias\": \"\",\n \"emailAddress\": \"\",\n \"processingState\": \"ERROR\",\n \"identityStatus\": \"REGISTERED\",\n \"managerRef\": {\n \"type\": \"SOURCE\",\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\": \"ERROR\",\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\": \"ERROR\",\n \"identityStatus\": \"WARNING\",\n \"managerRef\": {\n \"type\": \"ROLE\",\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\": \"DEACTIVATED\",\n \"managerRef\": {\n \"type\": \"APPLICATION\",\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": "9ff0b0e1-f16c-431e-a800-fadd8b234c36", + "id": "636a68f6-2709-444e-aa05-1082f4b58f8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66524,12 +66524,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc159460-f54a-4f4b-be7e-f6750d78e2a6", + "id": "5d415f55-313e-4ac3-a73e-ad3972adf37d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66627,7 +66627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "008361cc-0e4d-4a8e-b13c-660e8988b8c9", + "id": "69117e72-0b8d-4ed4-9c90-ee0df6687bac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66720,12 +66720,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c5c54e5b-6e46-4c9b-9d1c-a832e3ff7202", + "id": "d0a19d18-ef5d-4d6c-bc1c-e4a26484e02c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66823,7 +66823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03b47b37-3280-41cc-a5fa-f3c6afa5d649", + "id": "654d60da-b782-454d-b6d3-5396a41b8df0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66916,7 +66916,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -66927,7 +66927,7 @@ } }, { - "id": "e0bd33b1-3e6f-4222-80f6-1e068ff79b22", + "id": "39e79177-bc51-48f1-a998-c545999b0988", "name": "Identity Details", "request": { "name": "Identity Details", @@ -66964,7 +66964,7 @@ }, "response": [ { - "id": "a6a7331d-5f5f-47dd-b7b7-41657e8072ce", + "id": "4416c105-da8d-4f7e-9b09-f03075d6d763", "name": "An identity object", "originalRequest": { "url": { @@ -67003,12 +67003,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"id\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"alias\": \"\",\n \"emailAddress\": \"\",\n \"processingState\": \"ERROR\",\n \"identityStatus\": \"REGISTERED\",\n \"managerRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"UNREGISTERED\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c2b0a42d-a48f-4381-b287-d0b2598c1f20", + "id": "ac3feeda-13ef-4a03-bef2-2042909d96a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67047,12 +67047,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43337e9e-337b-42c4-b2cd-2106ecc9699f", + "id": "daa6d429-4c0b-473c-99d2-781043db5bff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67096,7 +67096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0badbf8a-5b62-4385-8c50-1a8b0e5b1185", + "id": "1640143e-de2d-4331-ae4a-f712e64059cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67135,12 +67135,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "765ff486-c8d9-4608-977f-cdebd63fb27d", + "id": "1c8dde45-e2ae-4afd-b71a-c699481b6b88", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67179,12 +67179,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e3242ce6-c05a-406f-a743-b163b60d3358", + "id": "e26786d0-6b6d-4fc1-8cb5-835a267b82aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67228,7 +67228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c81d6259-4fa6-470c-98c0-64f7bd66879c", + "id": "a08da8e9-76f5-402b-ac97-1408f2a7e720", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67267,7 +67267,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -67278,7 +67278,7 @@ } }, { - "id": "5c8a6f47-e117-441d-987a-d685eca9b1f0", + "id": "d7b356df-3d08-4992-bfe8-f8728a5322ec", "name": "Deletes an identity.", "request": { "name": "Deletes an identity.", @@ -67315,7 +67315,7 @@ }, "response": [ { - "id": "f468c50d-788a-4bb8-b6a2-e8ff1b0cec2b", + "id": "a3195d6d-0eed-45e8-a097-70108dd1b8d3", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -67349,7 +67349,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6de68d4c-c60f-4fed-aab8-ebc675116beb", + "id": "234c7d5c-1ba0-4885-b601-88d848593116", "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": { @@ -67393,7 +67393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2838d46-31ba-4f42-965c-5a1d7d82ffb7", + "id": "a0c50933-4b88-4d0d-b04e-1d8549efecc7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67437,7 +67437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cd255d3-515f-4d27-8045-4430aa578d86", + "id": "557adb45-a42a-4e83-a135-d6e0af349b84", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67476,12 +67476,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb43ccba-b7e0-44be-964c-f45f35184d9d", + "id": "c81731a5-701c-471d-91a2-871c9f1e2e1b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67520,12 +67520,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2df0d9d9-9e24-4170-964c-de018563b823", + "id": "23fb3179-4a3d-40a8-b60b-5c014b93ccda", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67569,7 +67569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a3d24fc-d6ea-4fed-85c7-287afb7bf81a", + "id": "582f8ce1-15f9-4684-a21f-cbe80cd10bce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67608,7 +67608,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -67619,7 +67619,7 @@ } }, { - "id": "69a14b6b-eb64-444d-b534-b27685392568", + "id": "94cf86ff-8434-4e0a-9466-728c10d11b96", "name": "Process a list of identityIds", "request": { "name": "Process a list of identityIds", @@ -67662,7 +67662,7 @@ }, "response": [ { - "id": "e4714d75-6396-40ac-9dcb-1779799cff3a", + "id": "6b571c75-c16d-4678-a4b2-f7bdacb5c2e4", "name": "Object containing the DTO type TASK_RESULT and the job id for the task", "originalRequest": { "url": { @@ -67719,7 +67719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad3d9b5f-6b50-4387-b05a-3db2ae1fcc5c", + "id": "a5294b61-df58-47fa-b91b-06e307e2e138", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67771,12 +67771,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a681b64-8f76-404b-af8d-cfb8d0ad8c03", + "id": "7b6ed594-0558-4922-87af-b4ca035f916e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67833,7 +67833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "037775be-ef47-4b7c-9c0a-909bf5ee5616", + "id": "e40e8e24-9926-43ad-b4d2-1b3ab276df41", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67885,12 +67885,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0be01fe9-6d3f-42b2-86ae-347f3a92fa7c", + "id": "eb516808-a347-4378-bf6f-bf7c898b1388", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67942,12 +67942,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b18a253c-c2d9-42c4-8669-4bcff4a8d018", + "id": "cf656981-3823-46e3-a1c8-9e3df081d37c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68004,7 +68004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cc3caae-fdc4-49cb-b1a5-71cd14934707", + "id": "d0869f74-3ef8-4f5b-8ece-ff74f8edd4a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68056,7 +68056,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -68073,7 +68073,7 @@ "description": "", "item": [ { - "id": "9b167e1e-02ba-4c2f-b879-4e276c938541", + "id": "0b1e33c7-3d84-4182-b3b1-a2c4d7dee6db", "name": "Lists all the identities", "request": { "name": "Lists all the identities", @@ -68148,7 +68148,7 @@ }, "response": [ { - "id": "773950ba-0051-4aa1-b92d-0a63c2b3fa16", + "id": "ed28cc56-18f3-429b-8919-b30579fe981b", "name": "List of identities for the customer.", "originalRequest": { "url": { @@ -68237,7 +68237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebe16fd7-e587-43c8-8c8e-fe954cdecafb", + "id": "7da969ef-386b-4324-87a0-f3d91ddeedee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68321,12 +68321,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "24f92a2d-8c7a-4ead-aebc-215bb0f72633", + "id": "a2fcd407-a8fc-4214-a1e6-b65273bf630a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68415,7 +68415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf682a61-9912-419c-b0b3-445b4a17a98a", + "id": "15743d5b-bd01-4777-b238-0689d68da92f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68499,12 +68499,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2af02dd4-716b-4d82-aa10-0a4282aaa989", + "id": "a72a28bf-bd5a-4a21-89fe-729e21983e09", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68593,7 +68593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03d89981-b14f-4489-8777-230d8bc8dfe8", + "id": "30345f11-6474-42de-9c6a-715e5c6fa580", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68677,7 +68677,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -68688,7 +68688,7 @@ } }, { - "id": "86d9dad6-0254-4c6c-8180-f557d65ea977", + "id": "28e489cc-1a1d-4066-ae3f-bebcab80f7a6", "name": "Get latest snapshot of identity", "request": { "name": "Get latest snapshot of identity", @@ -68725,7 +68725,7 @@ }, "response": [ { - "id": "40cbc128-07d0-4310-8589-3f3db0d19c5b", + "id": "c4a0e802-2c1e-46cf-ac47-6abc89b890d3", "name": "The identity object.", "originalRequest": { "url": { @@ -68764,12 +68764,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"displayName\": \"\",\n \"snapshot\": \"\",\n \"deletedDate\": \"\",\n \"accessItemCount\": {\n \"qui9\": \"\",\n \"quic\": \"\"\n },\n \"attributes\": {\n \"labore156\": \"\"\n }\n}", + "body": "{\n \"id\": \"\",\n \"displayName\": \"\",\n \"snapshot\": \"\",\n \"deletedDate\": \"\",\n \"accessItemCount\": {\n \"estdb\": \"\",\n \"et_b\": \"\"\n },\n \"attributes\": {\n \"ut19\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d61f3e84-2885-47f9-bdd7-43bad6084025", + "id": "176dcb87-1398-4fa7-b21d-29372d12e912", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68808,12 +68808,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dce555ab-21ff-490f-8cc6-8dcfa065ed34", + "id": "5619f890-4053-41b4-a20d-6cd304886474", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68857,7 +68857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aee5f202-5f34-48f1-b8bf-4e9137f335db", + "id": "813bcb38-bb37-41a1-90fe-1b160fbcf54c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68896,12 +68896,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d9064b2e-e02b-4bad-90e5-cf2f957d7eb0", + "id": "dae6260f-d565-4288-a807-54d346865b99", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68945,7 +68945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e441acdc-f64f-45cc-ae72-477714e248a7", + "id": "cc206f7c-0df8-4c7d-b6bf-887f4ff6bfeb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68984,7 +68984,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -68995,7 +68995,7 @@ } }, { - "id": "6cdb4e6d-9db8-4961-9778-61698c5cbf8d", + "id": "3f82d752-e8f8-43ef-81dc-9c5aaf40f481", "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", @@ -69043,7 +69043,7 @@ }, "response": [ { - "id": "a3e845f9-2976-4483-9c6c-a264f0657f9d", + "id": "c559bd2c-c02e-4cde-b072-f2e2db0af5c5", "name": "The list of access items.", "originalRequest": { "url": { @@ -69098,7 +69098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82bed87f-6d08-4dc9-89d0-11aa8770a2f9", + "id": "658183f1-01a1-4488-951a-5ff25f7fefbc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69148,12 +69148,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "24c96167-4c5e-4d59-81f6-bee85bc4ffbc", + "id": "ac666fab-0c03-4bbc-b5fd-a8f43f850b4a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69208,7 +69208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "084774d8-c270-4549-a267-f4c1e2ae94db", + "id": "b065b223-d833-40a3-822c-dff4a87a5b2d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69258,12 +69258,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "360c30b6-57a2-40ad-9c07-e46e863227a0", + "id": "d866e368-a7ee-4553-b281-bc5f5c1f5dc4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -69313,12 +69313,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc19cd18-de4b-4789-aa45-064a0fd392f8", + "id": "8af94b4e-d9ae-4118-9ea3-dc8d24daa5e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69368,7 +69368,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -69379,7 +69379,7 @@ } }, { - "id": "54527fe3-8ed2-49c3-b252-fd627366e7d2", + "id": "38440634-ac4d-4d74-b7b6-e4a57528ebb6", "name": "Lists all the snapshots for the identity", "request": { "name": "Lists all the snapshots for the identity", @@ -69463,7 +69463,7 @@ }, "response": [ { - "id": "ba844f28-a136-42ab-b0df-51046aff3c74", + "id": "dfe516a4-a6c9-4f59-ad4c-744fa77f9b4c", "name": "A list of identity summary for each snapshot.", "originalRequest": { "url": { @@ -69554,7 +69554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "411279dc-fed5-4f1c-842a-484a50efafbc", + "id": "e89b26b4-dfdd-42b5-8fcb-518ebcefd83e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69640,12 +69640,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "54e1084b-3e34-45f0-b47f-822ab915d5f9", + "id": "418932b6-1497-427f-bb03-362c065ecda7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69736,7 +69736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0e60c25-1023-4074-b98a-a28b1634f019", + "id": "8d4e5e12-cc1a-40cc-a21b-6985f2fbad23", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69822,12 +69822,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b8d115d-bc62-40c6-8ee6-50a2edb9f086", + "id": "ed5352e2-37c1-47f0-9c38-221fe98341af", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -69913,12 +69913,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f2dc03e-9cf3-4958-835f-451eb0cdc593", + "id": "15a9a902-2fca-4cc1-b9e1-61c4d79aba8d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70004,7 +70004,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -70015,7 +70015,7 @@ } }, { - "id": "10215d74-8852-4e4c-bc83-feab30d66d31", + "id": "78d19fcf-49fc-486c-b7ee-ed59dc492a8f", "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", @@ -70108,7 +70108,7 @@ }, "response": [ { - "id": "53105953-b1ea-461a-9b5d-be037570256f", + "id": "c429a791-dae6-42e9-892e-654a2f8c2cce", "name": "A summary list of identity changes in date histogram format.", "originalRequest": { "url": { @@ -70208,7 +70208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a87b967-9300-4daf-92d6-b36e2130e2c8", + "id": "2e4369c1-5b49-4be4-a6eb-4607d0328094", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70303,12 +70303,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "952faa67-6b4a-48a1-918a-62e7bc409d59", + "id": "a518c989-3dfc-418e-9fe5-128b42b38005", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70408,7 +70408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f580040-a4cf-417f-86fa-fcc246d13e90", + "id": "ef97ff3d-2d5c-4abd-ae01-b45c2a31ba3c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70503,12 +70503,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86762d74-3a0e-47a1-8a2a-2c27ea91f54f", + "id": "e7042ea2-172d-4be5-88f5-eca21019b08f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -70603,12 +70603,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3d501e5-5dd6-42f7-b94e-cc9e257ad72c", + "id": "e91fac19-7a36-4507-a937-04cee625db22", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70703,7 +70703,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -70714,7 +70714,7 @@ } }, { - "id": "96685a61-de22-4f40-bc31-363733eccc1c", + "id": "19649638-a85a-4c57-82bf-f72ae6de5cf7", "name": "Gets an identity snapshot at a given date", "request": { "name": "Gets an identity snapshot at a given date", @@ -70759,7 +70759,7 @@ }, "response": [ { - "id": "d736c2f8-3116-4b0b-bbb1-bdc9119c6d52", + "id": "74cf7225-9c4e-4a2c-900f-ff95002eb01a", "name": "The identity object.", "originalRequest": { "url": { @@ -70800,12 +70800,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"displayName\": \"\",\n \"snapshot\": \"\",\n \"deletedDate\": \"\",\n \"accessItemCount\": {\n \"qui9\": \"\",\n \"quic\": \"\"\n },\n \"attributes\": {\n \"labore156\": \"\"\n }\n}", + "body": "{\n \"id\": \"\",\n \"displayName\": \"\",\n \"snapshot\": \"\",\n \"deletedDate\": \"\",\n \"accessItemCount\": {\n \"estdb\": \"\",\n \"et_b\": \"\"\n },\n \"attributes\": {\n \"ut19\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de56a329-11ce-4ce8-aa19-e9be5e27e0c9", + "id": "10355a24-163d-4072-9322-09fecfb57754", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70846,12 +70846,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "209a8b87-9263-4f02-bff6-b5c6db19aa4c", + "id": "e9ab118b-451f-46e9-9333-c9fc062514f7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70897,7 +70897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f3fbef5-5854-4175-b248-b863a5b2d61b", + "id": "77fa8e16-8978-4c7b-854f-bf1d8bc19741", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70938,12 +70938,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "201a90c9-0eae-46c1-bf5d-fd34bbb51766", + "id": "7d4443b9-36e4-48b7-b962-ecf4b8d47c9f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -70984,12 +70984,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f24a944a-9c54-4402-8bd0-022f8466e90e", + "id": "b272d891-673e-466f-bd33-6e20260e96b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71030,7 +71030,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -71041,7 +71041,7 @@ } }, { - "id": "b80af11c-1623-4ffd-921a-b5321b29477d", + "id": "172b5c46-ab75-455b-822d-6b31d0dae5b1", "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", @@ -71097,7 +71097,7 @@ }, "response": [ { - "id": "07ae2239-b2c7-4a2e-8b09-851a14430d17", + "id": "3af5a187-71d4-4745-bfcd-fb05d064fb35", "name": "The identity object.", "originalRequest": { "url": { @@ -71154,7 +71154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d61b4767-de4f-432d-8623-1e784db94a69", + "id": "79640f5a-57b3-4a70-8c8a-df9cb836d4e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71206,12 +71206,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea67e062-e616-4442-8896-a70ee65cffb5", + "id": "2dc52418-5e76-4f14-b8c4-46cc5a4f8292", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71268,7 +71268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26b1f7d9-34ab-4589-a8dc-7d689f43edc6", + "id": "7d16650b-7f72-4a62-b3f2-6e82de22c22a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71320,12 +71320,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8105a7f3-1e6d-49e7-ab2f-fc6cc77dd7b3", + "id": "b737078b-7767-4b30-92e0-c889683f9926", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -71377,12 +71377,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c500364-10bd-48ab-a194-8e7b504714a4", + "id": "a10d995b-1d38-4d43-9581-ee36b4b77e9a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71434,7 +71434,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -71445,7 +71445,7 @@ } }, { - "id": "cf11ba23-cc2d-449b-86c3-10fb9152435c", + "id": "6e5689c1-d9a0-40c9-85fb-79a62b8a28ea", "name": "Lists all events for the given identity", "request": { "name": "Lists all events for the given identity", @@ -71556,7 +71556,7 @@ }, "response": [ { - "id": "679c3e9a-f253-442c-8077-23fa1ad78be6", + "id": "cfbd8ae3-820f-409b-8097-9eb4b2d71f8f", "name": "The list of events for the identity", "originalRequest": { "url": { @@ -71651,12 +71651,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"accessItem\": {\n \"accessType\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceName\": \"\",\n \"sourceId\": \"\",\n \"description\": \"\",\n \"displayName\": \"\",\n \"entitlementCount\": \"\",\n \"appDisplayName\": \"\"\n },\n \"identityId\": \"\",\n \"eventType\": \"\",\n \"dt\": \"\",\n \"governanceEvent\": {\n \"name\": \"\",\n \"dt\": \"\",\n \"type\": \"certification\",\n \"governanceId\": \"\",\n \"owners\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"reviewers\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"decisionMaker\": {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n }\n },\n {\n \"accessItem\": {\n \"accessType\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceName\": \"\",\n \"sourceId\": \"\",\n \"description\": \"\",\n \"displayName\": \"\",\n \"entitlementCount\": \"\",\n \"appDisplayName\": \"\"\n },\n \"identityId\": \"\",\n \"eventType\": \"\",\n \"dt\": \"\",\n \"governanceEvent\": {\n \"name\": \"\",\n \"dt\": \"\",\n \"type\": \"accessRequest\",\n \"governanceId\": \"\",\n \"owners\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"reviewers\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"decisionMaker\": {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n }\n }\n]", + "body": "[\n {\n \"accessItem\": {\n \"accessType\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceName\": \"\",\n \"sourceId\": \"\",\n \"description\": \"\",\n \"displayName\": \"\",\n \"entitlementCount\": \"\",\n \"appDisplayName\": \"\"\n },\n \"identityId\": \"\",\n \"eventType\": \"\",\n \"dt\": \"\",\n \"governanceEvent\": {\n \"name\": \"\",\n \"dt\": \"\",\n \"type\": \"certification\",\n \"governanceId\": \"\",\n \"owners\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"reviewers\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"decisionMaker\": {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n }\n },\n {\n \"accessItem\": {\n \"accessType\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"sourceName\": \"\",\n \"sourceId\": \"\",\n \"description\": \"\",\n \"displayName\": \"\",\n \"entitlementCount\": \"\",\n \"appDisplayName\": \"\"\n },\n \"identityId\": \"\",\n \"eventType\": \"\",\n \"dt\": \"\",\n \"governanceEvent\": {\n \"name\": \"\",\n \"dt\": \"\",\n \"type\": \"certification\",\n \"governanceId\": \"\",\n \"owners\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"reviewers\": [\n {\n \"id\": \"\",\n \"displayName\": \"\"\n },\n {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n ],\n \"decisionMaker\": {\n \"id\": \"\",\n \"displayName\": \"\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9cd29fe6-1ea6-43da-a747-8f7a63871025", + "id": "e195ee15-bfec-45ee-b9b5-82a6ff91425b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71751,12 +71751,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5de6d7b8-0a00-4d68-8c3c-e050610aa4bb", + "id": "7742316f-6c1d-400f-8a7f-9455335b44ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71856,7 +71856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e48e64c-2ea0-424c-9f85-e1303c858360", + "id": "b8c08065-7a57-4722-b583-c8d8bc67f5e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71951,12 +71951,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4a9699a-3463-449f-81e0-17453374877d", + "id": "ce816749-0b66-47af-ab16-6bacc5bf7113", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -72051,12 +72051,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5f909d7a-c1f7-4f16-85f0-af729bb52318", + "id": "63b4816a-11ce-44db-9a94-442b14ddddde", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72156,7 +72156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbfd46db-f475-442a-bc7f-4e22d32d7f16", + "id": "d535cd79-0542-4893-99a6-c989125f5f21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72251,7 +72251,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -72262,7 +72262,7 @@ } }, { - "id": "fd0d6a8d-0a1a-4e7c-bade-8ecdc38c2203", + "id": "36586f6c-72eb-4a9a-800a-4e65b5ca555d", "name": "Gets the start date of the identity", "request": { "name": "Gets the start date of the identity", @@ -72300,7 +72300,7 @@ }, "response": [ { - "id": "1da5410d-2569-4f10-a19c-a7a6fa432cba", + "id": "f252cbb6-38e8-4243-9d61-c1d2e09508ed", "name": "The start date of the identity", "originalRequest": { "url": { @@ -72345,7 +72345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01f654eb-3d7e-42cc-a653-d2b2aa433d3c", + "id": "e124e41f-f63b-44b0-8276-aac67bc24123", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72385,12 +72385,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c5308df9-d854-4b42-88b1-92b707beb064", + "id": "607d4495-498f-4e67-959e-2fe55bfc2bea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72435,7 +72435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c626ec0-d383-400e-9667-bad9e221166d", + "id": "72cc1499-d4af-4df0-8f15-e33ae6586238", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72475,12 +72475,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ab24157-dddf-4ae6-a048-3d00b5e00105", + "id": "f3d104d9-85bb-4208-97bd-1142be945cad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -72520,12 +72520,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9e0495f9-7575-4883-bb20-d4b251a6fa8c", + "id": "4ca702bf-f560-41eb-9570-dc414c1b5ce0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72565,7 +72565,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -72576,7 +72576,7 @@ } }, { - "id": "8ade2462-339f-4aac-9d48-fcd754a11823", + "id": "45bfc5cf-b651-449b-9d06-69958eab08e3", "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", @@ -72678,7 +72678,7 @@ }, "response": [ { - "id": "97383f20-3688-4be0-81b2-fd7b4273ad54", + "id": "04c89fa1-63f2-4150-a7d9-c98d9cc66dc4", "name": "A IdentityCompare object with difference details for each access item type", "originalRequest": { "url": { @@ -72773,12 +72773,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"accessItemDiff\": {\n \"labore_b\": {},\n \"veniam4_\": {}\n }\n },\n {\n \"accessItemDiff\": {\n \"Excepteur_f\": {},\n \"fugiat_ec\": {},\n \"ipsum9d\": {},\n \"esse_9\": {}\n }\n }\n]", + "body": "[\n {\n \"accessItemDiff\": {\n \"in6_\": {},\n \"anim6aa\": {},\n \"ad_2\": {}\n }\n },\n {\n \"accessItemDiff\": {\n \"nostrud_d\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb3a07df-d926-4a23-9147-77fef57a98e1", + "id": "2e28a9c1-6434-479b-889b-ceb0d73a32cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72873,12 +72873,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2f043f15-1158-46e4-88ae-75d78c52582c", + "id": "c177ac14-dec1-4c5c-9910-8e47195fedba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72978,7 +72978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cc5f678-af3c-48ae-aae9-35b87b93d369", + "id": "a90305e8-ed7b-4e6a-86c4-0ace29b24295", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73073,12 +73073,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f7abc225-0eb9-4dc1-97f2-7c7e045f69e0", + "id": "e83479ab-3f67-45a5-b624-d58feed50e62", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -73173,12 +73173,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "49e92f4e-0005-41cf-b88f-8e33843a0fe9", + "id": "06a98d5e-508c-44ce-b0c7-beeb559ba51f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73273,7 +73273,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -73284,7 +73284,7 @@ } }, { - "id": "0b8baa46-1c6a-49ff-bef5-d548de5e91f0", + "id": "81c80126-d222-44b2-873d-cad4c4c6889d", "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", @@ -73392,7 +73392,7 @@ }, "response": [ { - "id": "3f360713-30db-48af-ad9d-07f2bd4754f3", + "id": "13033ea6-dd3d-45c0-a58d-9908f0576453", "name": "A list of events for the identity", "originalRequest": { "url": { @@ -73488,12 +73488,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"eventType\": \"ADD\",\n \"displayName\": \"\",\n \"sourceName\": \"\"\n },\n {\n \"id\": \"\",\n \"eventType\": \"REMOVE\",\n \"displayName\": \"\",\n \"sourceName\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"eventType\": \"REMOVE\",\n \"displayName\": \"\",\n \"sourceName\": \"\"\n },\n {\n \"id\": \"\",\n \"eventType\": \"ADD\",\n \"displayName\": \"\",\n \"sourceName\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86f58b89-3aa9-4b91-84ec-a79d19059c4a", + "id": "a9bb9563-04b6-4e21-9bed-8b12b1772ba5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73589,12 +73589,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b8ad6f6-968a-4c4f-9825-cd895dd96d3a", + "id": "f507b9b1-51e9-4ab4-8039-2eea4ced0b91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73695,7 +73695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75fae7ad-2287-4b69-9e2c-27e29e2f11b6", + "id": "1fcd39a4-e804-49e9-bb87-e44c81a31be4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73791,12 +73791,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a7cb8354-ef8c-4814-b387-4f5d4b7f0c05", + "id": "fe0a1348-a7de-4d84-bf00-10bae2c93451", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -73892,12 +73892,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4934fd1e-8e08-46fe-a972-4b4e4ae4a455", + "id": "db03f173-35a9-4b56-86eb-9a10a00a8d83", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73993,7 +73993,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -74010,7 +74010,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": "bf4e6218-a494-423e-95d4-29c8f1544732", + "id": "0633688c-882e-4a7c-bcfd-c600eaf0f01e", "name": "Identity Profiles list", "request": { "name": "Identity Profiles list", @@ -74085,7 +74085,7 @@ }, "response": [ { - "id": "01141768-a18a-4b1e-907d-07f8d89bba67", + "id": "aaae89f9-682b-4249-9b8c-cfab7088d44f", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -74169,12 +74169,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 \"ipsum224\": 49300883.50063872,\n \"in80\": \"labore Duis sint\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"in_0c4\": 76431971,\n \"ex4ea\": 95017858\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 \"laborum_6\": false,\n \"consequat_d\": -99617590\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"esseed\": 32310569,\n \"reprehenderit7d5\": 70471203.50399503\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 \"voluptate6\": \"Lorem ut\",\n \"in_e\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ut__0\": 98718983,\n \"fugiatcb\": \"anim ullamco sit\",\n \"sit9\": \"elit sint Duis irure\",\n \"deserunt0\": \"Lorem deserunt minim\",\n \"eac\": \"incididunt sint\"\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 \"quis_76\": false,\n \"nostrud_2\": 36455374.25054529\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"autea\": 25761383.465442657,\n \"fugiat_6\": \"consequat in\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e67f999a-26a6-4f7d-b215-f8f8d7334272", + "id": "ce58a4b5-4e3b-4a61-9921-744482c223f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74258,12 +74258,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "972e5fcd-6996-49bc-959a-fc107f455fba", + "id": "5ac978a8-1109-4df7-a79b-d084b440f7d0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74352,7 +74352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bcc022c-81f7-4dff-8e80-86a76c742849", + "id": "12eefeac-5a57-4dfd-bfbe-73606111c3e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74436,12 +74436,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "24137a06-0e34-4c11-a860-5ce60a14907d", + "id": "a26bed4f-1a5e-445d-9ccb-923a52e087bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74530,7 +74530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79d3bca6-a35d-4f41-b3b3-296df747268e", + "id": "d15ba9bd-0ad4-433b-bf94-b952881a3ad0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74614,7 +74614,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -74625,7 +74625,7 @@ } }, { - "id": "7f994d4a-2cdb-4851-aab4-934b5ef455d5", + "id": "3300dd75-832e-4b63-9cf0-ed2e5794ff94", "name": "Create an Identity Profile", "request": { "name": "Create an Identity Profile", @@ -74656,7 +74656,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 \"idb20\": \"reprehenderit\",\n \"nisi_78b\": false,\n \"sed_e3\": 22293366.970235422\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"anim_2d9\": -96533295,\n \"in__0c\": -93937689,\n \"dolor_efe\": \"elit cup\"\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 \"magna8\": \"deserunt \"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"voluptate2\": \"occaecat ea sint proident nost\",\n \"essea0\": false\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -74667,7 +74667,7 @@ }, "response": [ { - "id": "145fa08d-9dda-480a-b96a-2d9ef9295722", + "id": "4e0d2ebb-67e9-481e-988c-26197ab27244", "name": "The created Identity Profile", "originalRequest": { "url": { @@ -74701,7 +74701,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 \"idb20\": \"reprehenderit\",\n \"nisi_78b\": false,\n \"sed_e3\": 22293366.970235422\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"anim_2d9\": -96533295,\n \"in__0c\": -93937689,\n \"dolor_efe\": \"elit cup\"\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 \"magna8\": \"deserunt \"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"voluptate2\": \"occaecat ea sint proident nost\",\n \"essea0\": false\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -74718,12 +74718,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 \"idb20\": \"reprehenderit\",\n \"nisi_78b\": false,\n \"sed_e3\": 22293366.970235422\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"anim_2d9\": -96533295,\n \"in__0c\": -93937689,\n \"dolor_efe\": \"elit cup\"\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 \"magna8\": \"deserunt \"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"voluptate2\": \"occaecat ea sint proident nost\",\n \"essea0\": false\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "17aa3d02-3398-4806-9ce4-1aa1663c8e3b", + "id": "53241be7-891f-4ae5-8929-87c66055038b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74757,7 +74757,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 \"idb20\": \"reprehenderit\",\n \"nisi_78b\": false,\n \"sed_e3\": 22293366.970235422\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"anim_2d9\": -96533295,\n \"in__0c\": -93937689,\n \"dolor_efe\": \"elit cup\"\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 \"magna8\": \"deserunt \"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"voluptate2\": \"occaecat ea sint proident nost\",\n \"essea0\": false\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -74774,12 +74774,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74d045f5-87dd-4e86-8226-f2cdab5dda3d", + "id": "79785fed-c65d-4c7c-8c05-dcbc8fb683e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74813,7 +74813,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 \"idb20\": \"reprehenderit\",\n \"nisi_78b\": false,\n \"sed_e3\": 22293366.970235422\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"anim_2d9\": -96533295,\n \"in__0c\": -93937689,\n \"dolor_efe\": \"elit cup\"\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 \"magna8\": \"deserunt \"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"voluptate2\": \"occaecat ea sint proident nost\",\n \"essea0\": false\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -74835,7 +74835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53a25406-a9d4-4d6e-bb36-298aeaedc7f6", + "id": "61ac0878-811d-4842-968e-af6dc5d829aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74869,7 +74869,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 \"idb20\": \"reprehenderit\",\n \"nisi_78b\": false,\n \"sed_e3\": 22293366.970235422\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"anim_2d9\": -96533295,\n \"in__0c\": -93937689,\n \"dolor_efe\": \"elit cup\"\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 \"magna8\": \"deserunt \"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"voluptate2\": \"occaecat ea sint proident nost\",\n \"essea0\": false\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -74886,12 +74886,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ecbabc32-ddf2-48e5-8c46-149627d3810b", + "id": "bd2e734b-8871-4591-a6cb-93774564e356", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74925,7 +74925,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 \"idb20\": \"reprehenderit\",\n \"nisi_78b\": false,\n \"sed_e3\": 22293366.970235422\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"anim_2d9\": -96533295,\n \"in__0c\": -93937689,\n \"dolor_efe\": \"elit cup\"\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 \"magna8\": \"deserunt \"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"voluptate2\": \"occaecat ea sint proident nost\",\n \"essea0\": false\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -74947,7 +74947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bab18f86-51e6-4f12-8729-047cbd2d833e", + "id": "1d06a569-6fb3-4e57-ac0b-c05f9c43b538", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74981,7 +74981,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 \"idb20\": \"reprehenderit\",\n \"nisi_78b\": false,\n \"sed_e3\": 22293366.970235422\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"anim_2d9\": -96533295,\n \"in__0c\": -93937689,\n \"dolor_efe\": \"elit cup\"\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 \"magna8\": \"deserunt \"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"voluptate2\": \"occaecat ea sint proident nost\",\n \"essea0\": false\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -74998,7 +74998,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -75009,7 +75009,7 @@ } }, { - "id": "764b3ed4-ce50-4188-b857-cb74c7225286", + "id": "b0f80090-a968-4944-8518-84c08f33c83f", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -75052,7 +75052,7 @@ }, "response": [ { - "id": "f9d0f34b-fa93-458a-8b6e-e3ab219456ff", + "id": "54bdfb17-26e1-4eff-81b4-49ece5ede1a1", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -75104,12 +75104,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\": \"Error\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc87b580-7400-4485-a51e-6a7cca4074de", + "id": "866d5d6d-0848-4042-8d85-eee997a5b73e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75161,12 +75161,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9adce7b3-ee69-4661-ad3b-091585f1fbe8", + "id": "22116151-6416-4617-bbfc-4d884cff4c58", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75223,7 +75223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f4ee20b-6dfc-4bb3-9592-a673a863a54e", + "id": "0f564b14-51b3-4cfa-9606-cc814d657589", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75275,12 +75275,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c16b647b-9905-4d10-a461-2dbf4a88c340", + "id": "c619c756-39bc-4c0c-8f47-3f0c43496cd8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75337,7 +75337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e0fbb14-c4bb-4e81-b0bc-b5036ae2f884", + "id": "dc7ca704-d359-45b6-bcd5-4a9ee0f72141", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75389,7 +75389,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -75400,7 +75400,7 @@ } }, { - "id": "c2a074bb-2caf-41a7-9720-6b06c53405e4", + "id": "f84e1242-7a0d-4b61-b608-86ae727b69a5", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -75476,7 +75476,7 @@ }, "response": [ { - "id": "8e5f74a3-b04c-4fa2-90af-3bf2bb651a62", + "id": "d21e2229-3054-4efe-a5a3-2360564c63fc", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -75561,12 +75561,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"CERTIFICATION\",\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 \"quisd\": \"\",\n \"culpa_9_\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"labored5\": \"\",\n \"tempor_d92\": \"\",\n \"et_c8\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ACCOUNT\",\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 \"dolor_0\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"qui_426\": \"\",\n \"dolored2\": \"\"\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\": \"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 \"commodo_82\": \"\",\n \"minimc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_6\": \"\"\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 \"minim_6\": \"\",\n \"irure_f15\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"in_fa7\": \"\",\n \"eiusmod_8d\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "728424dc-0168-4f86-9ff8-dbc43a0fd04e", + "id": "ba6cae79-2bcd-4f14-9a7b-3d1b9e3ea134", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75651,12 +75651,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4dd12012-c7a1-4629-8681-743cb721a4b1", + "id": "5ac505b0-6145-4b5e-92fc-938b02efe164", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75746,7 +75746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e811cc4-8308-4974-bb94-256be4583d7a", + "id": "bef7cd4d-a417-433b-9904-94acf0687e70", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75831,12 +75831,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93c93707-8780-4635-a186-715b110c7a92", + "id": "573afa07-7040-446a-901d-0edb94d1daff", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -75921,12 +75921,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9e602fe1-bcd5-4645-b28f-27c39c25d8c2", + "id": "3eb88e30-d982-45d7-aeda-5908da85d5a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76016,7 +76016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "210838e9-c03a-4d0f-888f-fa36e4e3e1da", + "id": "f7578354-798f-4ef5-aeae-541305eb242a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76101,7 +76101,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -76112,7 +76112,7 @@ } }, { - "id": "aaf6c163-37de-4487-ba6d-1e1a6e1bc3d5", + "id": "f3a5ac14-4b51-4577-bf14-c4b1fdbb911f", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -76144,7 +76144,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"CERTIFICATION\",\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 \"quisd\": \"\",\n \"culpa_9_\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"labored5\": \"\",\n \"tempor_d92\": \"\",\n \"et_c8\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ACCOUNT\",\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 \"dolor_0\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"qui_426\": \"\",\n \"dolored2\": \"\"\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\": \"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 \"commodo_82\": \"\",\n \"minimc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_6\": \"\"\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 \"minim_6\": \"\",\n \"irure_f15\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"in_fa7\": \"\",\n \"eiusmod_8d\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76155,7 +76155,7 @@ }, "response": [ { - "id": "9c637332-de99-4cb6-8260-e1a17eaca113", + "id": "70040573-3559-4664-85e6-b31341e52579", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -76190,7 +76190,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"CERTIFICATION\",\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 \"quisd\": \"\",\n \"culpa_9_\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"labored5\": \"\",\n \"tempor_d92\": \"\",\n \"et_c8\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ACCOUNT\",\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 \"dolor_0\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"qui_426\": \"\",\n \"dolored2\": \"\"\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\": \"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 \"commodo_82\": \"\",\n \"minimc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_6\": \"\"\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 \"minim_6\": \"\",\n \"irure_f15\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"in_fa7\": \"\",\n \"eiusmod_8d\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76207,12 +76207,12 @@ "value": "application/json" } ], - "body": "{\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"iruref\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"quis_0\": {},\n \"ad93_\": {},\n \"aute_114\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"nond\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"commodo_1ad\": {},\n \"cillumdd\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"consequat_a\": {},\n \"dolore_a\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"nostrud_fb\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", + "body": "{\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"ex6c\": {},\n \"magna_86d\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"sintc\": {},\n \"quis2\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"minimf\": {},\n \"exercitation_a\": {},\n \"laborecf5\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"incididunt55\": {},\n \"ut_fea\": {},\n \"ex_10\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"labore_f\": {},\n \"Lorem37b\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"sunte6\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f210462e-862e-4b8e-9f9d-0edf17f3522b", + "id": "f0d210b9-0578-48d9-b0e4-c11f7b18b1a4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76247,7 +76247,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"CERTIFICATION\",\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 \"quisd\": \"\",\n \"culpa_9_\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"labored5\": \"\",\n \"tempor_d92\": \"\",\n \"et_c8\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ACCOUNT\",\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 \"dolor_0\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"qui_426\": \"\",\n \"dolored2\": \"\"\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\": \"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 \"commodo_82\": \"\",\n \"minimc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_6\": \"\"\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 \"minim_6\": \"\",\n \"irure_f15\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"in_fa7\": \"\",\n \"eiusmod_8d\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76264,12 +76264,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "748c7ea1-158c-4170-a556-2dd609806b33", + "id": "a2bfc658-e2ab-4e13-8e96-b25ef28fe4a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76304,7 +76304,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"CERTIFICATION\",\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 \"quisd\": \"\",\n \"culpa_9_\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"labored5\": \"\",\n \"tempor_d92\": \"\",\n \"et_c8\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ACCOUNT\",\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 \"dolor_0\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"qui_426\": \"\",\n \"dolored2\": \"\"\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\": \"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 \"commodo_82\": \"\",\n \"minimc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_6\": \"\"\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 \"minim_6\": \"\",\n \"irure_f15\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"in_fa7\": \"\",\n \"eiusmod_8d\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76326,7 +76326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93d3a116-dac3-4a23-bc2e-68138d503cf2", + "id": "15dcc125-924d-446b-ae1a-f5383a97c2f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76361,7 +76361,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"CERTIFICATION\",\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 \"quisd\": \"\",\n \"culpa_9_\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"labored5\": \"\",\n \"tempor_d92\": \"\",\n \"et_c8\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ACCOUNT\",\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 \"dolor_0\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"qui_426\": \"\",\n \"dolored2\": \"\"\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\": \"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 \"commodo_82\": \"\",\n \"minimc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_6\": \"\"\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 \"minim_6\": \"\",\n \"irure_f15\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"in_fa7\": \"\",\n \"eiusmod_8d\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76378,12 +76378,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1d9101f-d80b-44f2-a0a2-c0be29cc5956", + "id": "fd144d19-ee8a-4133-a5ac-3a1bbaaebb77", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76418,7 +76418,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"CERTIFICATION\",\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 \"quisd\": \"\",\n \"culpa_9_\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"labored5\": \"\",\n \"tempor_d92\": \"\",\n \"et_c8\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ACCOUNT\",\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 \"dolor_0\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"qui_426\": \"\",\n \"dolored2\": \"\"\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\": \"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 \"commodo_82\": \"\",\n \"minimc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_6\": \"\"\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 \"minim_6\": \"\",\n \"irure_f15\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"in_fa7\": \"\",\n \"eiusmod_8d\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76440,7 +76440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a331c69-304f-476a-9641-9d96448ddb82", + "id": "3299779a-3856-4843-91f8-6a4896cfe2e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76475,7 +76475,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"CERTIFICATION\",\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 \"quisd\": \"\",\n \"culpa_9_\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"labored5\": \"\",\n \"tempor_d92\": \"\",\n \"et_c8\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"ACCOUNT\",\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 \"dolor_0\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"qui_426\": \"\",\n \"dolored2\": \"\"\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\": \"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 \"commodo_82\": \"\",\n \"minimc\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"Duis_6\": \"\"\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 \"minim_6\": \"\",\n \"irure_f15\": \"\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"in_fa7\": \"\",\n \"eiusmod_8d\": \"\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": false\n }\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -76492,7 +76492,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -76503,7 +76503,7 @@ } }, { - "id": "814201b8-2d71-4339-b5cb-1b675c1216b3", + "id": "4cdc37a4-ff57-429e-b283-e291c5ee715c", "name": "Generate Identity Profile Preview", "request": { "name": "Generate Identity Profile Preview", @@ -76535,7 +76535,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 \"voluptatee\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"dolor30\": -24852440.220455468,\n \"proident_9dd\": false,\n \"ut_5e_\": 91981735,\n \"esse__\": true,\n \"proidentef6\": -54142114\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 \"ipsum_6a\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad_f8d\": true,\n \"reprehenderit_52_\": false,\n \"consectetur_\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -76546,7 +76546,7 @@ }, "response": [ { - "id": "4382333c-beca-4b49-b3b7-dca3a3444d37", + "id": "a7eb96a4-903f-44c1-99ab-240e807e9a01", "name": "Object representing the preview object with all of the identity attributes using the current mappings.", "originalRequest": { "url": { @@ -76581,7 +76581,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 \"voluptatee\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"dolor30\": -24852440.220455468,\n \"proident_9dd\": false,\n \"ut_5e_\": 91981735,\n \"esse__\": true,\n \"proidentef6\": -54142114\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 \"ipsum_6a\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad_f8d\": true,\n \"reprehenderit_52_\": false,\n \"consectetur_\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -76598,12 +76598,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": {\n \"type\": \"PASSWORD_POLICY\",\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\": \"DEFAULT\",\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\": \"LIFECYCLE_STATE\",\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\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "626ad643-17f2-44a8-b019-a17dcbff91ab", + "id": "3f6bdbbc-0a74-46d3-b746-941f40fdb42b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76638,7 +76638,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 \"voluptatee\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"dolor30\": -24852440.220455468,\n \"proident_9dd\": false,\n \"ut_5e_\": 91981735,\n \"esse__\": true,\n \"proidentef6\": -54142114\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 \"ipsum_6a\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad_f8d\": true,\n \"reprehenderit_52_\": false,\n \"consectetur_\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -76655,12 +76655,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e369226-6fff-402f-a608-b180cfddbbfe", + "id": "3aa6ee63-4bab-4c4c-922c-e65ffb624eb2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76695,7 +76695,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 \"voluptatee\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"dolor30\": -24852440.220455468,\n \"proident_9dd\": false,\n \"ut_5e_\": 91981735,\n \"esse__\": true,\n \"proidentef6\": -54142114\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 \"ipsum_6a\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad_f8d\": true,\n \"reprehenderit_52_\": false,\n \"consectetur_\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -76717,7 +76717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4509586-f7cf-4a19-99ad-e0aea2e8d219", + "id": "9e3e6b08-5d6e-47c1-a4dc-efc4adfaab00", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76752,7 +76752,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 \"voluptatee\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"dolor30\": -24852440.220455468,\n \"proident_9dd\": false,\n \"ut_5e_\": 91981735,\n \"esse__\": true,\n \"proidentef6\": -54142114\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 \"ipsum_6a\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad_f8d\": true,\n \"reprehenderit_52_\": false,\n \"consectetur_\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -76769,12 +76769,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a103d5a-174a-46fd-9823-707887f046b5", + "id": "6b9305e8-6459-46a1-a6b7-27618e5863ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76809,7 +76809,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 \"voluptatee\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"dolor30\": -24852440.220455468,\n \"proident_9dd\": false,\n \"ut_5e_\": 91981735,\n \"esse__\": true,\n \"proidentef6\": -54142114\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 \"ipsum_6a\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad_f8d\": true,\n \"reprehenderit_52_\": false,\n \"consectetur_\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -76831,7 +76831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab013414-f73c-40d6-b44c-3e5c0502120e", + "id": "fb1d0027-05fd-4045-8963-c10798d4aa58", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76866,7 +76866,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 \"voluptatee\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"dolor30\": -24852440.220455468,\n \"proident_9dd\": false,\n \"ut_5e_\": 91981735,\n \"esse__\": true,\n \"proidentef6\": -54142114\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 \"ipsum_6a\": false\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ad_f8d\": true,\n \"reprehenderit_52_\": false,\n \"consectetur_\": false\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -76883,7 +76883,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -76894,7 +76894,7 @@ } }, { - "id": "929ea547-134e-4678-b523-1e9ea42ff8c6", + "id": "a6e63a9b-cd82-4d68-a900-d19e36b2aafa", "name": "Gets a single Identity Profile", "request": { "name": "Gets a single Identity Profile", @@ -76931,7 +76931,7 @@ }, "response": [ { - "id": "6c0b9ae6-36c0-4c74-ae70-ed9a56857e26", + "id": "82f20312-6ebd-4dd6-ad94-014a177b4b0e", "name": "An Identity Profile object", "originalRequest": { "url": { @@ -76970,12 +76970,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 \"idb20\": \"reprehenderit\",\n \"nisi_78b\": false,\n \"sed_e3\": 22293366.970235422\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"anim_2d9\": -96533295,\n \"in__0c\": -93937689,\n \"dolor_efe\": \"elit cup\"\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 \"magna8\": \"deserunt \"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"voluptate2\": \"occaecat ea sint proident nost\",\n \"essea0\": false\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "13375b18-454b-4503-bb28-6f2480abd0b4", + "id": "8465aa3a-9545-475e-a48a-b6cade7dd41e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77014,12 +77014,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d60f70ee-6d93-4048-a896-149dd688045d", + "id": "802c96a4-2f59-419c-8567-546de976b904", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77063,7 +77063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "720d873e-426f-4d39-bc48-bdbc0cb6810a", + "id": "08a47b2e-ecb2-492f-9553-160f7381f006", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77102,12 +77102,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "adfe6be6-cc47-4dd6-ad81-450b79f9891a", + "id": "7373d1a2-f0ad-49d2-a5fc-139b2e264da0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77146,12 +77146,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c41be76-5e39-4aca-8780-a464d621b1ac", + "id": "1938f318-fb75-4808-96a7-ae4105696109", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77195,7 +77195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67de4488-9d72-4368-b84b-99529717490a", + "id": "8bd1ca82-407f-43a4-adab-fe28b608cd56", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77234,7 +77234,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -77245,7 +77245,7 @@ } }, { - "id": "e8ecaf5c-6ddc-46e6-b4fe-7d4306c4ad6b", + "id": "66e1318f-f685-4f01-836e-2ef104f08c44", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -77282,7 +77282,7 @@ }, "response": [ { - "id": "e861c1b3-a63f-40e4-bde9-a35d388edf7c", + "id": "e3d2535d-af30-48a9-8908-e75bcb45788c", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -77321,12 +77321,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": "c83dc3ac-d25b-4bf4-b9e5-ebe5d0c5105a", + "id": "257174bf-1fff-4035-8ac5-c32cee30b64d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77365,12 +77365,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a0da2479-1edb-4997-8632-d0c220dc5c8a", + "id": "006e4b57-f7cc-424e-b566-335e04900837", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77414,7 +77414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "624e9e95-4f4c-49a8-9e4d-dcd6687a210d", + "id": "e831e833-0b89-4c61-a443-913b0e56967c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77453,12 +77453,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68597226-5057-418a-ba93-d0fcd4e5e46a", + "id": "df17e2fd-dcfd-43c1-b507-3862a4fc6cd9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77497,12 +77497,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c70b6310-5e45-4718-a02e-f9820bc7ed1c", + "id": "01157e9e-022b-4ad1-bbfe-7f52daf2c03e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77546,7 +77546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86b9cd7e-2c65-46fe-a030-b29baa14556b", + "id": "68138063-9994-4368-8e90-8a24074b6339", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77585,7 +77585,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -77596,7 +77596,7 @@ } }, { - "id": "4519560b-6075-4c32-8647-c05874f3945e", + "id": "df53ed9e-92ac-45dc-801a-413da3b9dc43", "name": "Update the Identity Profile", "request": { "name": "Update the Identity Profile", @@ -77635,7 +77635,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -77646,7 +77646,7 @@ }, "response": [ { - "id": "66f11c0f-0f3b-4b9c-9b18-b5df82277597", + "id": "6bffbd10-14bd-465e-b824-09396021c630", "name": "The updated Identity Profile.", "originalRequest": { "url": { @@ -77681,7 +77681,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -77698,12 +77698,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 \"idb20\": \"reprehenderit\",\n \"nisi_78b\": false,\n \"sed_e3\": 22293366.970235422\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"anim_2d9\": -96533295,\n \"in__0c\": -93937689,\n \"dolor_efe\": \"elit cup\"\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 \"magna8\": \"deserunt \"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"voluptate2\": \"occaecat ea sint proident nost\",\n \"essea0\": false\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"\",\n \"reportName\": \"\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "282fa44c-e954-4440-ac65-4d6cfbfcf436", + "id": "3414a513-3aad-4d91-833b-b971660627a2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77738,7 +77738,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -77755,12 +77755,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d84a193b-dd60-4399-8259-7775875fe1d4", + "id": "0c9db151-3693-44ed-a918-9401517e5ccf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77795,7 +77795,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -77817,7 +77817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8e554be-a3b6-4cab-a312-1a57d2d695b0", + "id": "0ca7c022-d565-480a-99e8-06cf3b15a0d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77852,7 +77852,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -77869,12 +77869,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83264bbf-ec1d-4ec6-9ec8-1521d944521c", + "id": "d78cb316-e3ab-46a4-8c3e-b317209566d1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77909,7 +77909,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -77926,12 +77926,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eac021a3-9fbe-45ae-9aaa-33218a9e835c", + "id": "f5e0529e-a1f1-4449-b333-738b4364c5d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77966,7 +77966,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -77988,7 +77988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9d542d9-48f2-4ec7-a5f5-3c7dc7124661", + "id": "3f143842-d4a9-4cb7-b3ed-7e9e7c7887db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78023,7 +78023,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -78040,7 +78040,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -78051,7 +78051,7 @@ } }, { - "id": "677e1dfd-0ac3-49bf-b62a-e3d682f7988b", + "id": "4eac3c90-ae2f-4d09-8920-c53a81902e25", "name": "Default identity attribute config", "request": { "name": "Default identity attribute config", @@ -78089,7 +78089,7 @@ }, "response": [ { - "id": "ec894810-6166-41e8-95a3-7992c6ddecc2", + "id": "b412204e-da78-4f79-9635-e954f39ae8f0", "name": "An Identity Attribute Config object", "originalRequest": { "url": { @@ -78129,12 +78129,12 @@ "value": "application/json" } ], - "body": "{\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"qui_9\": 60626338.76580596\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"culpa2\": -74640048\n }\n }\n }\n ]\n}", + "body": "{\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"voluptate_d\": -90869162,\n \"ametf\": \"cillum anim Excepteur in\"\n }\n }\n },\n {\n \"identityAttributeName\": \"\",\n \"transformDefinition\": {\n \"type\": \"\",\n \"attributes\": {\n \"ex_c0\": -70025978.67796707,\n \"sint_e\": 33907978.42451714,\n \"aute4e\": 36521153.54261318,\n \"ullamco_d\": 45809674.45914763\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1b0ea2a-2b66-49fb-bc52-27bac5cb2367", + "id": "6b162ef1-af20-432a-9a86-786ee3f7ef72", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78174,12 +78174,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a1d7c12-b1c1-4404-bd03-412d68879d7c", + "id": "417829fa-e90d-424a-938a-73763ca35e43", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78224,7 +78224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5ff72fb-20c9-4ef7-bf9a-eca88d0ff06b", + "id": "e7c0e959-5c37-497d-9e0d-8d6db9f76246", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78264,12 +78264,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b9ce1880-d97d-4faf-a5a5-1d133460c948", + "id": "ee137609-5e28-4840-ad50-f911f734af1d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78309,12 +78309,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a65977b-0ae1-44dc-9a49-0927b40408e5", + "id": "3b9e7a2d-f3f3-4937-865b-6987366c8f88", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78359,7 +78359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e597fdc-080a-4bee-a1ef-c1fca75b2d48", + "id": "932c36e5-2238-4128-94cf-7ab24126b711", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78399,7 +78399,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -78410,7 +78410,7 @@ } }, { - "id": "e5f61a6f-fb5c-4307-b59b-33cec0d854ec", + "id": "917ede23-370b-414d-956f-4d0a7811a198", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -78448,7 +78448,7 @@ }, "response": [ { - "id": "f63e2399-7914-438b-b277-a13c99f1eac1", + "id": "7739a516-d37c-4753-9557-b0ce9d7dc761", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -78493,7 +78493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0222aa4-80c3-4125-b367-cf9261fdb1fd", + "id": "b2f875dc-6d63-40ea-b65f-ff44e5b92fc5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78533,12 +78533,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9083a7aa-12d1-42f4-b920-6c22350fa059", + "id": "57748f5b-5e27-44ae-a043-9bd48b508886", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78583,7 +78583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dae38e87-e743-49c5-be98-802fe278a4c7", + "id": "c78a686b-7f80-4588-bf72-be0cf1127e75", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78623,12 +78623,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1569697a-cc5b-4c80-ad65-3810ddaadb2b", + "id": "f80cbd96-ca6b-4843-a2d9-c8d7783cae87", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78668,12 +78668,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52f56194-b56e-4c23-a9dc-950b008ab65f", + "id": "c99901f9-54e8-4736-8829-1d808e361e8b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78718,7 +78718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05d6b8b7-23ae-40a5-a852-0c7e3e4d903d", + "id": "f53b867c-8e98-42b1-8db4-c3fbe10a588d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78758,7 +78758,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -78775,7 +78775,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": "b8376114-6e0b-43c7-b730-bbdc7fd312ad", + "id": "9aee9d81-bcaa-4b96-91c4-0f85c46d88bd", "name": "Lifecycle State", "request": { "name": "Lifecycle State", @@ -78820,7 +78820,7 @@ }, "response": [ { - "id": "451309af-111d-4130-9df4-469eed80e53b", + "id": "cdb0a533-83c1-4729-b922-d89373b1c3e1", "name": "lifecycle-state", "originalRequest": { "url": { @@ -78861,12 +78861,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\": \"ENABLE\",\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\": \"ENABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"accessProfileIds\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ede11470-d5ac-458c-958d-6ffb89f71575", + "id": "b8f484b6-82a2-44c9-9bf6-896a85fe61f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78907,12 +78907,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9bd1b162-82d6-4483-9c9c-cfb3cf43e383", + "id": "db102b35-b109-4439-9dee-831813d022c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78958,7 +78958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f65cb9d4-f4fe-473b-957b-b9a513f9735c", + "id": "048893f1-b53e-4cde-9320-1d59f36c514a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78999,12 +78999,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8be6c475-9e53-40f5-aa5a-773deaf63023", + "id": "11648354-bacf-41a3-8b92-2b1f635807d3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79050,7 +79050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e4b0624-d21b-477a-bcac-715189637bb8", + "id": "4db98db1-8bc6-4fc2-b493-8b7a310fc16b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79091,7 +79091,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -79102,7 +79102,7 @@ } }, { - "id": "e0aa40b4-7bf5-441d-82c9-77793044020b", + "id": "86a6de7f-292d-4bf9-8e68-52bced7f068e", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -79149,7 +79149,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79160,7 +79160,7 @@ }, "response": [ { - "id": "421cb022-fe75-413b-a118-7cd65c8c007c", + "id": "c093f6ba-409f-4eca-890c-f7ec6cb1962f", "name": "Updated lifecycle-state.", "originalRequest": { "url": { @@ -79197,7 +79197,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79214,12 +79214,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\": \"ENABLE\",\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\": \"ENABLE\",\n \"sourceIds\": [\n \"\",\n \"\"\n ]\n }\n ],\n \"accessProfileIds\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "035ef701-8c8e-42ec-a066-7b7757fb6127", + "id": "75a83010-6d12-49af-9bd5-691ad5e8b009", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79256,7 +79256,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79273,12 +79273,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64df5b0b-c70d-4934-9067-c50f4b8dffe2", + "id": "a7ac2163-3da2-478e-9269-7b45f1fb49e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79315,7 +79315,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79337,7 +79337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5eece623-b40d-49bd-903f-d5e323bd12e6", + "id": "071adc28-9325-4456-b662-5b8ce7fb1b92", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79374,7 +79374,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79391,12 +79391,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aaeffe86-c6c2-44ec-9bfe-b3a020dc9d66", + "id": "7214c727-2c35-4ff4-b4a0-25e9562164cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79433,7 +79433,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79455,7 +79455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "253f94aa-632c-4e99-9e57-c4e945621003", + "id": "cf5a8e3d-345e-43b7-b750-991a3e2ae954", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79492,7 +79492,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -79509,7 +79509,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -79526,7 +79526,7 @@ "description": "Read and write operations for managing client data and statuses", "item": [ { - "id": "0bf4b9b2-945c-4130-bf40-d64fe8ee2871", + "id": "c8a2c580-d795-4cb4-b2f8-cb1f68845be8", "name": "Specified Managed Client Status.", "request": { "name": "Specified Managed Client Status.", @@ -79551,7 +79551,7 @@ "type": "text/plain" }, "key": "type", - "value": "CCG" + "value": "" } ], "variable": [ @@ -79574,7 +79574,7 @@ }, "response": [ { - "id": "45619759-62b9-408e-8e67-8c646cdbbb1b", + "id": "b91e6491-a48c-40fa-bd28-515edef10b64", "name": "Responds with Managed Client Status having the given ID and Type.", "originalRequest": { "url": { @@ -79594,7 +79594,7 @@ "type": "text/plain" }, "key": "type", - "value": "CCG" + "value": "" } ], "variable": [] @@ -79624,12 +79624,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {},\n \"status\": \"ERROR\",\n \"type\": \"IIQ_HARVESTER\",\n \"timestamp\": \"\"\n}", + "body": "{\n \"body\": {},\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2007199f-0cce-4263-8124-387710285dae", + "id": "c2456747-87e3-4e7f-93e0-1c98ea58d7bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79649,7 +79649,7 @@ "type": "text/plain" }, "key": "type", - "value": "CCG" + "value": "" } ], "variable": [] @@ -79679,12 +79679,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "660ab379-4ec5-492b-919e-0a7ad363c216", + "id": "c21fd7b6-8416-48f8-99ef-edce92329821", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79704,7 +79704,7 @@ "type": "text/plain" }, "key": "type", - "value": "CCG" + "value": "" } ], "variable": [] @@ -79739,7 +79739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a45d048-6768-4b12-9325-592d3f90def8", + "id": "14e65b5a-2b6d-4a1d-b41a-83a0f2c14b28", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79759,7 +79759,7 @@ "type": "text/plain" }, "key": "type", - "value": "CCG" + "value": "" } ], "variable": [] @@ -79789,12 +79789,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1ac099c8-e1df-473a-938f-f96ed863fa99", + "id": "e9d8dba7-a1ca-4f99-acac-24bcf9102642", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79814,7 +79814,7 @@ "type": "text/plain" }, "key": "type", - "value": "CCG" + "value": "" } ], "variable": [] @@ -79844,12 +79844,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f83169ba-b808-496d-ad1c-fd2fa108381c", + "id": "9e83a12f-c5f8-4016-8083-955950f15c90", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79869,7 +79869,7 @@ "type": "text/plain" }, "key": "type", - "value": "CCG" + "value": "" } ], "variable": [] @@ -79904,7 +79904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b541941a-5470-4c41-b145-2887eb92a6f4", + "id": "55a73930-45ac-40a0-8f7b-2d94cc5f1579", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79924,7 +79924,7 @@ "type": "text/plain" }, "key": "type", - "value": "CCG" + "value": "" } ], "variable": [] @@ -79954,7 +79954,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -79965,7 +79965,7 @@ } }, { - "id": "aa344611-09db-47dd-b58c-bb8d8764ee4a", + "id": "e3aec9e2-640c-46e8-ba3b-bb4bd94f0775", "name": "Handle status request from client", "request": { "name": "Handle status request from client", @@ -80005,7 +80005,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"ERROR\",\n \"type\": \"IIQ_HARVESTER\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80016,7 +80016,7 @@ }, "response": [ { - "id": "af04e98a-cbbb-4669-b149-e03ac185d736", + "id": "bdbf3620-329b-4e08-961a-b1955f60e9b5", "name": "Responds with the updated Managed Client Status.", "originalRequest": { "url": { @@ -80052,7 +80052,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"ERROR\",\n \"type\": \"IIQ_HARVESTER\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80069,12 +80069,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {},\n \"status\": \"NOT_CONFIGURED\",\n \"type\": null,\n \"timestamp\": \"\"\n}", + "body": "{\n \"body\": {},\n \"status\": \"CONFIGURING\",\n \"type\": \"CCG\",\n \"timestamp\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52069c61-a833-4231-88c9-7124fb3264d7", + "id": "6d78187c-1cbd-460f-9cfa-c29031ff1947", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80110,7 +80110,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"ERROR\",\n \"type\": \"IIQ_HARVESTER\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80127,12 +80127,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "324192d5-bca9-4492-814e-edae40655af1", + "id": "3b4a4a10-281e-4a7f-b121-ac980993fa84", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80168,7 +80168,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"ERROR\",\n \"type\": \"IIQ_HARVESTER\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80190,7 +80190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60337ab7-9fc9-4849-9ef1-6c11ad04d3d2", + "id": "1c9593b8-dd38-4cf3-89c2-1d61967c1783", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80226,7 +80226,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"ERROR\",\n \"type\": \"IIQ_HARVESTER\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80243,12 +80243,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5537501-27f5-4e0c-86ad-4b6271fe7f89", + "id": "67900a25-2595-4201-9d5a-62c36221b9e7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80284,7 +80284,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"ERROR\",\n \"type\": \"IIQ_HARVESTER\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2923ce6f-0a31-4d7a-9e51-f03429661fcd", + "id": "82ee9de8-ac6f-4c15-a058-0e957936212d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80342,7 +80342,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"ERROR\",\n \"type\": \"IIQ_HARVESTER\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80364,7 +80364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8d4832b-9272-40f7-a94a-18c45f359eac", + "id": "331864bd-791e-4c90-9b71-740e7cceb17a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80400,7 +80400,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {},\n \"status\": \"ERROR\",\n \"type\": \"IIQ_HARVESTER\",\n \"timestamp\": \"\"\n}", + "raw": "{\n \"body\": {},\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"INTERNAL\",\n \"timestamp\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -80417,7 +80417,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -80434,7 +80434,7 @@ "description": "Operations for accessing and managing client Clusters, including Log Configuration", "item": [ { - "id": "2addd380-dd10-4906-b342-8b0071d44e8c", + "id": "561194f7-dea5-4dab-a65f-aca01badcf8f", "name": "Get a specified ManagedCluster.", "request": { "name": "Get a specified ManagedCluster.", @@ -80471,7 +80471,7 @@ }, "response": [ { - "id": "d1c98cb4-f0f6-456e-93bf-d3be5aa273e5", + "id": "b752e407-0bd1-4de2-bbe2-3616bd756952", "name": "Responds with ManagedCluster having the given ID.", "originalRequest": { "url": { @@ -80510,12 +80510,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"clientType\": null,\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"iai\",\n \"configuration\": {\n \"officiad9\": \"\",\n \"pariatur6\": \"\"\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 \"ina9\": \"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\": \"CCG\",\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"iai\",\n \"configuration\": {\n \"aliqua_1a\": \"\",\n \"aliquip_b1e\": \"\",\n \"est_15\": \"\"\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 \"commodo72\": \"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": "b2b96795-0c61-4199-bdb9-c9d55af50696", + "id": "0fa6b96d-1e41-4b99-8f9d-f2d6f384045e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80554,12 +80554,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81002721-fc27-4a49-b959-ba9953ac36a9", + "id": "29e18315-4819-40f1-9104-75150691b3c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80603,7 +80603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a42162b2-e375-4fbf-a0a0-fd47ced78ab2", + "id": "9af83369-6089-4536-8bc9-54c110feb393", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80642,12 +80642,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "28aada28-f13d-4877-962a-e5079104f503", + "id": "eae202bb-ff4d-4cf7-b5ff-88d9f9491822", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80686,12 +80686,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4180940-ab04-4a31-95ff-3b515dec8e6f", + "id": "9d464d72-1926-4da4-8b49-be6d45f3b326", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80735,7 +80735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "126e90dd-83ab-47e0-92ad-f0c151dd0a50", + "id": "8aadcc3a-5635-4aee-bc2e-c8eb6ab3ffe8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80774,7 +80774,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -80785,7 +80785,7 @@ } }, { - "id": "673af138-927d-4ef4-92c2-248fdb989b88", + "id": "e66a492e-9cb0-4229-b306-07e50960d68e", "name": "Get managed cluster's log configuration", "request": { "name": "Get managed cluster's log configuration", @@ -80823,7 +80823,7 @@ }, "response": [ { - "id": "a25175b7-e20f-4f91-8291-9e9555a8248a", + "id": "4aeaabe2-0447-423b-8cab-cd5713c090b0", "name": "Log configuration of ManagedCluster matching given cluster ID", "originalRequest": { "url": { @@ -80863,12 +80863,12 @@ "value": "application/json" } ], - "body": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"anim5\": \"INFO\"\n }\n}", + "body": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"proident1b5\": \"INFO\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e362b173-ed1a-4b0b-a0cd-37b362a1f3ff", + "id": "a99d2ace-4252-4425-b372-849cc85eb4aa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80908,12 +80908,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "587dc1d1-f2e6-4ea8-8990-34843171ea20", + "id": "b8ae5c5b-6805-4428-bc00-722f4ac64dfc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80958,7 +80958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0adb7463-1d88-4434-8e36-b8ed12cc212d", + "id": "6cd64adf-a552-4926-98f8-ef669a1d77c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80998,12 +80998,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "51f30f55-644b-4850-88e8-d9a670040f90", + "id": "beb51c20-f89a-416a-babe-f331a1bb70c6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81043,12 +81043,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f889d48-c7ae-4461-915d-5cd88809d18f", + "id": "82a6951e-859f-40ae-b100-fdf082e4aa1b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81093,7 +81093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c05bbc23-b3f9-48d7-bdf8-d83ee0848645", + "id": "52ac8694-116a-426e-90b1-ee8f4815a3b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81133,7 +81133,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -81144,7 +81144,7 @@ } }, { - "id": "b0adcb42-95ca-4b30-ab71-b37ff8c7b7f7", + "id": "6136e26e-3e20-4a7e-aa5a-e6801e71a64e", "name": "Update managed cluster's log configuration", "request": { "name": "Update managed cluster's log configuration", @@ -81184,7 +81184,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"anim5\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"proident1b5\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81195,7 +81195,7 @@ }, "response": [ { - "id": "9d35141a-911c-43fd-ae6f-f7daa3747b14", + "id": "95b7fbae-106d-405c-bd72-77a2b2b2ae1a", "name": "Responds with updated ClientLogConfiguration for given ManagedCluster", "originalRequest": { "url": { @@ -81231,7 +81231,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"anim5\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"proident1b5\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81248,12 +81248,12 @@ "value": "application/json" } ], - "body": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"anim5\": \"INFO\"\n }\n}", + "body": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"proident1b5\": \"INFO\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "298bd0ad-87f7-4acb-b4db-18d5cd1a8248", + "id": "4f44e55e-6774-497c-9b84-d7beb4601990", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81289,7 +81289,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"anim5\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"proident1b5\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81306,12 +81306,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7395287c-8e22-4879-a38e-9fe2f403f18b", + "id": "0f5489b9-0d1f-497b-a2c7-8938487b89a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81347,7 +81347,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"anim5\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"proident1b5\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81369,7 +81369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c042c7a-c1d0-482c-94cf-f7477ac76424", + "id": "7794d18e-f0d1-4911-9cf2-d3286cd8cef8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81405,7 +81405,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"anim5\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"proident1b5\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81422,12 +81422,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "abf766c6-9f07-44f1-858b-89b5e19cdd79", + "id": "0ac12c45-5ede-4b63-818b-fe9349ecf3ef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81463,7 +81463,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"anim5\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"proident1b5\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81480,12 +81480,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2bbf83be-a99e-43df-a1c1-d9690ca3ed00", + "id": "f9d3804a-36aa-4918-8377-5c99503aa466", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81521,7 +81521,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"anim5\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"proident1b5\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81543,7 +81543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d456840f-0243-4e63-8742-639fb99b51bc", + "id": "b84636e1-101c-44d2-a893-b73f44b984cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81579,7 +81579,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"anim5\": \"INFO\"\n }\n}", + "raw": "{\n \"durationMinutes\": \"\",\n \"rootLevel\": \"INFO\",\n \"clientId\": \"\",\n \"expiration\": \"\",\n \"logLevels\": {\n \"proident1b5\": \"INFO\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -81596,7 +81596,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -81607,7 +81607,7 @@ } }, { - "id": "5f63678d-9067-4659-ac5b-6691cc35fe30", + "id": "b7227838-df03-4b25-9ee4-a2008da7bbc8", "name": "Retrieve all Managed Clusters.", "request": { "name": "Retrieve all Managed Clusters.", @@ -81673,7 +81673,7 @@ }, "response": [ { - "id": "c271eef8-67d2-4686-a0ab-189a79076617", + "id": "52f12d96-1728-4ccc-8b07-f551374b0e09", "name": "Responds with a list of ManagedCluster.", "originalRequest": { "url": { @@ -81748,12 +81748,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"clientType\": \"VA\",\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"iai\",\n \"configuration\": {\n \"culpa_ce\": \"\"\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 \"commodo_abc\": \"INFO\",\n \"animcb\": \"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\": \"INTERNAL\",\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"iai\",\n \"configuration\": {\n \"ex874\": \"\"\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 \"velit_737\": \"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\": \"INTERNAL\",\n \"ccgVersion\": \"\",\n \"name\": \"\",\n \"pod\": \"\",\n \"org\": \"\",\n \"type\": \"iai\",\n \"configuration\": {\n \"velit_32\": \"\",\n \"anim_0\": \"\"\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 \"dolor_2d\": \"INFO\",\n \"estb\": \"INFO\",\n \"enim9f1\": \"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 \"dolor8\": \"\",\n \"non967\": \"\",\n \"et182\": \"\",\n \"ullamco5ac\": \"\"\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 \"laboris_7\": \"INFO\",\n \"fugiat_a6d\": \"INFO\",\n \"sed7_7\": \"INFO\",\n \"aliquip_c0\": \"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": "13ec4a29-a399-4b54-a9ad-53ae3474b0a4", + "id": "957c8973-c9a7-4395-83c9-c69696e0a82b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81828,12 +81828,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a58f3d8e-2b4b-40c8-af57-6c6ad052fb69", + "id": "f38f3698-8a4d-4c47-a7a2-d07b3d7907d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81913,7 +81913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b05eff84-1347-4782-895e-47a249c4b28e", + "id": "a32f342a-fe83-42c6-9b57-3e671f907311", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81988,12 +81988,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b0d3c116-2e57-457c-a805-e1a1ab3e0a22", + "id": "d82c1241-581d-409b-bb30-ec7814091a25", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82073,7 +82073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b0e4f48-4cfa-423f-905a-5a532896348e", + "id": "a85593e9-301d-4828-a69f-5ec6335258d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82148,7 +82148,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -82165,7 +82165,7 @@ "description": "Configure and test multifactor authentication (MFA) methods", "item": [ { - "id": "37953774-7f6c-4abc-8ba7-e624e228d4ad", + "id": "acebeeb7-12a9-4b96-a48b-f00a9b8b8d67", "name": "Configuration of a MFA method", "request": { "name": "Configuration of a MFA method", @@ -82203,7 +82203,7 @@ }, "response": [ { - "id": "61d403a5-5431-4446-84dc-d00778c109eb", + "id": "142f61eb-75ed-475a-8d42-426c1dcf7611", "name": "MFA configuration of a given method.", "originalRequest": { "url": { @@ -82248,7 +82248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a23397d-5580-4359-99d2-92d036f408df", + "id": "f5fc2f44-5df3-449c-9364-62190d9bb02e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82288,12 +82288,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b1e2391f-ca17-4a68-9cae-afcb45022f38", + "id": "b6566c5e-c8a5-4fa7-8948-e13f0a022836", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82338,7 +82338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "381d1962-5076-42c4-8009-431f4bf946ba", + "id": "14099690-5c22-4695-9d7b-d132806fc5e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82378,12 +82378,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dbb595a2-e673-4199-8ec4-ac9f0341c8c1", + "id": "794e7212-d75c-4450-9dbd-cbb7dccbe06e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82428,7 +82428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d455517a-8d0f-4be9-8fbf-5691a8652fbc", + "id": "33797790-12af-477c-8d63-6da9b5ff225c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82468,7 +82468,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -82479,7 +82479,7 @@ } }, { - "id": "da0d8353-bf82-4ffb-aa6c-5e68d5e038cb", + "id": "9ac548f1-b55d-4b26-b9aa-ba9da85ee079", "name": "Set MFA method configuration", "request": { "name": "Set MFA method configuration", @@ -82530,7 +82530,7 @@ }, "response": [ { - "id": "d2d4d2a8-c54c-4531-9765-7412c9b67eec", + "id": "66b09190-d5e6-4491-b2c0-fba96f89b714", "name": "MFA configuration of a given method.", "originalRequest": { "url": { @@ -82588,7 +82588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c761e96b-26b8-4fa8-b484-8207b3611ba1", + "id": "32be10a2-351d-4936-8b27-549f16b139b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82641,12 +82641,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "293c4ae5-35e2-4479-a420-9ba9028354ae", + "id": "6c67647f-b894-4990-a903-7f38c7b25dcd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82704,7 +82704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da87c252-fef5-4442-bb6e-922e8bfef46c", + "id": "28b4c0cd-da7b-4196-b63a-b8edddd02309", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82757,12 +82757,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c698b07d-f3f3-4f02-ace3-9902f8a47ba1", + "id": "b61d114a-cee7-42fe-85e3-482f270db912", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82820,7 +82820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9db261f2-fa21-4010-8d82-0e90fe6ae4f7", + "id": "0733fdf9-7b22-4eec-a60a-0685b36f54fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82873,7 +82873,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -82884,7 +82884,7 @@ } }, { - "id": "637722ee-ce02-4f81-b664-a4d14e07ddca", + "id": "db8470e4-0ce4-418d-a0a2-fdc392775822", "name": "MFA method's test configuration", "request": { "name": "MFA method's test configuration", @@ -82922,7 +82922,7 @@ }, "response": [ { - "id": "7e62d402-e55f-4b26-81c7-35aefc6c7304", + "id": "75daad06-79e5-43b6-b71d-1cb2d1eb631b", "name": "The result of configuration test for the MFA provider.", "originalRequest": { "url": { @@ -82967,7 +82967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02f745ef-717a-4a23-b19c-1fd022bfffc9", + "id": "c44c7290-cb0a-4a95-97ac-4f523f14c907", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83007,12 +83007,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2aa62797-0d65-41df-8e2c-9c0494efed1e", + "id": "fee2eb3c-dd0d-4f6f-a726-416c164edc84", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83057,7 +83057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9f4226c-20fd-4d27-a41b-c59b1abdceb8", + "id": "6158c2ea-e2f3-449a-955c-5d317526c564", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83097,12 +83097,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4326258c-e15c-4cc8-84da-36f9a8c970ad", + "id": "910d68cb-6cc6-4eed-9ee6-e9f78ccdd5ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83147,7 +83147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3c7b660-e2a7-4b42-a43b-c06232ba50c1", + "id": "16b49c4a-80f5-44fa-bbd1-c3b891986959", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83187,7 +83187,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -83204,7 +83204,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": "833e327f-372b-468e-a1ab-2bcb3d5175ce", + "id": "4d33938a-2bd6-4ea5-b129-f16fd45c04b2", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -83235,7 +83235,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -83246,7 +83246,7 @@ }, "response": [ { - "id": "e544aea5-324d-4150-8233-69c47ac964f2", + "id": "82e2de83-0f52-4b84-826b-0556384555f5", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -83280,7 +83280,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -83297,12 +83297,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"ut4\": \"\",\n \"ex7\": \"\",\n \"laboris_8\": \"\",\n \"sint7\": \"\"\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 \"ad12\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b8bed32-006f-4912-9d12-adc0f6059dd3", + "id": "01ae10a2-10c4-41ed-a039-7c0aff7e0ef7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83336,7 +83336,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -83353,12 +83353,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a66f9c01-f519-453c-b8cb-b57bd5ef819a", + "id": "f8dbd862-b894-4b18-8078-5c6734fe87e2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83392,7 +83392,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -83414,7 +83414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d23a02ba-ab2f-42a9-8315-2d3779dd6f56", + "id": "c09dd538-d612-4f04-bb48-b223a34bf64f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83448,7 +83448,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -83465,12 +83465,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0e547460-bd16-4115-b4f8-adc5eb4bdb90", + "id": "eca45ec9-4aea-40c2-8335-1c01a2784243", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83504,7 +83504,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -83526,7 +83526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7fa3822-789e-4567-a5d5-e4cad36c0548", + "id": "103b1472-a788-4bd7-be5c-b252fda8a96f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83560,7 +83560,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -83577,7 +83577,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -83588,7 +83588,7 @@ } }, { - "id": "f92cacd4-59d5-40f4-b9f4-63859d177f13", + "id": "ddb4e055-78ee-4082-ad26-5d8393a04495", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -83663,7 +83663,7 @@ }, "response": [ { - "id": "8b6ca56f-d28a-4e4a-8aac-cfcdd6181d2d", + "id": "5397c440-d787-41ab-aaa2-ce79b8a73196", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -83747,12 +83747,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 \"sunt_c91\": \"\"\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 \"cupidatate7\": \"\"\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 \"consectetur9\": \"\",\n \"in_c\": \"\",\n \"qui_f\": \"\"\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 \"ut_e_f\": \"\",\n \"enim_0\": \"\",\n \"in52\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74d5a052-e618-4e29-8e11-0d145a23c8f4", + "id": "0b485ca9-49f6-40de-8d5d-b51b457ce81f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83836,12 +83836,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d471aa3-edef-4032-b716-1c4331843ec3", + "id": "8e0b962a-b78d-4fac-b41f-49c7a8942b15", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83930,7 +83930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fadc85f6-db39-4eb8-9be2-31ab83286dca", + "id": "b125039e-ecc5-40dc-bef5-d15e9f3d2e6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84014,12 +84014,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "84136a85-4155-4f7f-92a8-3179c73752cc", + "id": "d5c41800-7ae8-4fe2-88fc-6862df81bb60", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84108,7 +84108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b157a85b-2d8c-4d92-8e0a-aaab869cebfc", + "id": "5b311ad9-39f5-4421-8910-00afb9ce5dd7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84192,7 +84192,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -84203,7 +84203,7 @@ } }, { - "id": "b5ed5b65-2478-41bb-9420-bf55d0dc6a18", + "id": "467c6d52-a92b-41c6-8687-1f4b8acb4b04", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -84240,7 +84240,7 @@ }, "response": [ { - "id": "7ff67189-1297-406b-8aa0-c894df86b721", + "id": "c7c3e17d-b855-4f86-ac91-a4000cc8a64e", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -84279,12 +84279,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"ut4\": \"\",\n \"ex7\": \"\",\n \"laboris_8\": \"\",\n \"sint7\": \"\"\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 \"ad12\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5bd02581-4845-4293-9db2-4ef98e242f48", + "id": "166bb13d-993d-4393-96fe-4cc6b8f65754", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84323,12 +84323,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e77355af-8f1e-448f-a9c7-0ebfe84c1b24", + "id": "f95446d2-5c94-4cec-9e7b-2fae8296583b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84372,7 +84372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16bb7ef3-a52b-409b-83f8-d282b8672314", + "id": "245acf20-452b-4ab6-a287-ba6e620198b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84411,12 +84411,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd7e278a-9c59-4140-b8af-9e775ebdcae7", + "id": "ed9aca79-5a11-44e1-9ff5-61197adaee0a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84460,7 +84460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f537402d-24e4-47e2-bb49-ca575f96d0c2", + "id": "33e82fbb-6a8f-4da3-88a0-4fa346a025b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84499,7 +84499,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -84510,7 +84510,7 @@ } }, { - "id": "53b4f3d3-f642-4214-a87e-314c2e243320", + "id": "3397e9d9-ae16-4504-9cba-62360bfd4f1f", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -84549,7 +84549,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -84560,7 +84560,7 @@ }, "response": [ { - "id": "35dd0c21-60fe-4df6-bd3a-dd8b67c01dd5", + "id": "dbaebc6c-568d-42aa-b20a-f43d86afe944", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -84595,7 +84595,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -84612,12 +84612,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"ut4\": \"\",\n \"ex7\": \"\",\n \"laboris_8\": \"\",\n \"sint7\": \"\"\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 \"ad12\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d640382-0c96-464d-978c-54efe7ead035", + "id": "d45c3d44-2742-45ac-a5a7-29b414f11aac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84652,7 +84652,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -84669,12 +84669,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad609c5c-3ac8-4aea-8706-291e0b7d0ef9", + "id": "ed7ab5b7-9b97-43c5-b114-bae05b5a72bc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84709,7 +84709,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -84731,7 +84731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25801e2a-dd24-48f8-81db-a940d414bda6", + "id": "f7c615c1-db22-42dd-a4dc-e93b9c9cc028", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84766,7 +84766,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -84783,12 +84783,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6b4c93b-431f-465d-803f-7afc415660b2", + "id": "1b923983-34f0-4966-b23e-08c5fef4b037", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84823,7 +84823,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -84840,12 +84840,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3e5df015-76b9-4187-a055-f31257f6f371", + "id": "e1f0bb2b-89b0-47b8-a9c5-8184d1c23179", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84880,7 +84880,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -84902,7 +84902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5f5b43c-907a-41c9-a3b8-0ee3d31421f3", + "id": "5409801a-a412-4856-b409-16ca5b60a0ee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84937,7 +84937,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -84954,7 +84954,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -84965,7 +84965,7 @@ } }, { - "id": "aa86f0c1-eff7-4849-bb1c-c84d3dde1b31", + "id": "f2088aaa-7c9c-44c7-bed2-3296a0cb2843", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -85004,7 +85004,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85015,7 +85015,7 @@ }, "response": [ { - "id": "113112b6-5952-431b-a25e-6b36da5c6c99", + "id": "3f24f735-9dc2-4e2f-9a67-37e57b3b84cb", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -85050,7 +85050,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85067,12 +85067,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"data\": {\n \"ut4\": \"\",\n \"ex7\": \"\",\n \"laboris_8\": \"\",\n \"sint7\": \"\"\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 \"ad12\": \"\"\n },\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da582d94-b2e9-4bc4-8392-c84c1f84bb93", + "id": "33d9f3b6-2a28-46b9-9444-a443560e226a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85107,7 +85107,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85124,12 +85124,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1a661f2f-fb42-482f-b807-954b0cc945d7", + "id": "8a971f11-ade9-4597-ba45-3bd186f9d4ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85164,7 +85164,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85186,7 +85186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f0b6e71-d19b-453b-8728-4294cc56d343", + "id": "30032edb-7862-41b3-8178-2b976fe4898c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85221,7 +85221,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85238,12 +85238,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b30d8f36-f449-405e-874a-6f64e1587e13", + "id": "ed68234a-97a1-4e0d-9b9b-a6cbf5ba11b7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85278,7 +85278,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85295,12 +85295,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1ab17757-cb31-4d28-9a04-25c90c986e45", + "id": "56f06f9f-d5ac-4533-9462-36ac8cd739db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85335,7 +85335,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85357,7 +85357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "723e6e3b-a4a5-46bc-b904-4ad7b6d8d431", + "id": "51081a02-367f-40fb-833a-ebacca9b8e17", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85392,7 +85392,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -85409,7 +85409,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -85420,7 +85420,7 @@ } }, { - "id": "e891b814-a05a-492f-bce7-d2cb6e40a6ce", + "id": "5965468e-05e3-45ec-851c-2ea4d421715c", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -85457,7 +85457,7 @@ }, "response": [ { - "id": "9d0e25ff-0a50-4ef2-bcbe-cba6d2f6ae85", + "id": "be458690-25ea-4e2a-81f6-ff96c75d2053", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -85491,7 +85491,7 @@ "_postman_previewlanguage": "text" }, { - "id": "453bb863-accd-4bdf-af0b-9663ed241fad", + "id": "90ae082a-e57d-4954-9b4a-90469c9a6a53", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85530,12 +85530,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf6ad0d1-85ca-4a52-b610-06f72bb691e8", + "id": "a6c1440c-be82-420b-880a-0dfa7a4b240a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85579,7 +85579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3880cfb7-dc16-4286-bfd4-7cff7801aa44", + "id": "890268ce-c02d-4586-80f6-8ce8f1d313a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85618,12 +85618,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67208c64-fed2-41df-ab60-ca810236e64d", + "id": "989165ab-a428-4290-8100-fb640f2ad583", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85667,7 +85667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4303598f-03c9-4c22-bed4-5ff86889349e", + "id": "6cd9be76-4e79-42e2-b82b-3467aaa1e01c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85706,7 +85706,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -85717,7 +85717,7 @@ } }, { - "id": "21edb5ea-609b-4adb-9d28-8761bc85e7b9", + "id": "c433c80b-af26-4030-ab81-5c2d4d892d5d", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -85760,7 +85760,7 @@ }, "response": [ { - "id": "89e8fef9-eac8-47b2-8b3f-11538c8e8b90", + "id": "96ba9f8b-425b-4945-9c42-4cca5fcbf543", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -85807,7 +85807,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6b7215d5-ce13-4535-a54e-7c4e8c7c39e9", + "id": "ac03bc5c-6c6c-4c96-9af3-df2f33b50de3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85859,12 +85859,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cee3a2a2-f49b-4055-a4f6-75605e2cd83e", + "id": "6c9a4961-9cf3-4683-b357-69c47e0536c5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85921,7 +85921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c9fb97a-5787-4989-a36d-676802fa455a", + "id": "1f1649a3-220f-46df-a321-818fae0c2033", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85973,12 +85973,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7836dafb-447f-4494-8e81-d64388ecdcd0", + "id": "847266fb-cc16-4916-abbd-33d355ff26bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86035,7 +86035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11d9bcb8-058b-42b9-b2f0-41735e7e2dbb", + "id": "8090718b-822e-4977-8f3e-5f293975071e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86087,7 +86087,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -86098,7 +86098,7 @@ } }, { - "id": "adf735bf-922a-49c3-9b93-acdc4f1df87c", + "id": "dc52e0cc-3b71-4544-8fa5-2c39a92fcd47", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -86129,7 +86129,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86140,7 +86140,7 @@ }, "response": [ { - "id": "9730ec30-9ae8-4aff-b435-156533b01c5c", + "id": "3061449c-3ade-4f3b-864a-6e241e625770", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -86174,7 +86174,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86191,12 +86191,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 \"mollit_a9\": \"\",\n \"enim__\": \"\",\n \"sunt_52\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"CANCELLED\",\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 \"adipisicinge\": \"\",\n \"proidenta5e\": \"\",\n \"in15\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"GOVERNANCE_GROUP\",\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\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"NOT_READY\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "225e1b4f-b77d-470e-9eba-97c8d84a8c9d", + "id": "6e7d1d4b-60ac-4069-9afb-a0efc190132f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86230,7 +86230,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86247,12 +86247,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8051558-d09a-4e97-a90a-2a0708af6afe", + "id": "a88467fa-fdc9-4721-b6a3-6e0b6d1c2259", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86286,7 +86286,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86308,7 +86308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e882a98-b798-47e8-8cee-e791ca3e5182", + "id": "2e98d800-16f0-42ac-b2e7-e79eac263971", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86342,7 +86342,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86359,12 +86359,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "979da31e-3ed1-45f3-98bf-8be7fb8be560", + "id": "c65f2af5-f266-449a-a182-be60e96ea1ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86398,7 +86398,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86420,7 +86420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e669c555-3c17-49aa-acfb-b8b99d68b690", + "id": "1f3db025-31eb-4860-a238-f91d742f54ee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86454,7 +86454,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 \"consequat_2\": \"\",\n \"tempor_2\": \"\",\n \"do6\": \"\",\n \"culpa_3\": \"\",\n \"sed8\": \"\"\n }\n}", + "raw": "{\n \"accountName\": \"\",\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\",\n \"phone\": \"\",\n \"manager\": \"\",\n \"sourceId\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"data\": {\n \"cillum_12_\": \"\",\n \"Lorem_1\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -86471,7 +86471,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -86482,7 +86482,7 @@ } }, { - "id": "e4a5307d-07de-4bc1-8ffc-afa661af8b11", + "id": "0d4fd06e-42e9-4042-992b-b80607b8efd9", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -86566,7 +86566,7 @@ }, "response": [ { - "id": "29e28ff2-0d71-4ddb-b204-7393ad19a54b", + "id": "89813d09-5fb0-489f-a9c5-6d8b5cddbb06", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -86659,12 +86659,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 \"minim6\": \"\",\n \"fugiat_23\": \"\",\n \"magna_f78\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"CANCELLED\",\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 \"amet3ad\": \"\",\n \"exercitation64\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"CANCELLED\",\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 \"exercitation_9\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"RULE\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"REJECTED\",\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 },\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 \"ullamco_b\": \"\",\n \"Ut_17f\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CLUSTER\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a989f4e1-27ad-4432-b0ed-f572bcf0d00d", + "id": "8a86b0b0-29ec-495d-a639-305fad3e81ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86757,12 +86757,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16ac8cdb-8ee7-4054-81a4-2da63871670b", + "id": "2b096401-cde1-405e-ad9c-799d51a5a18c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86860,7 +86860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aced58f-8480-47cb-8a3d-7ca01ffd2772", + "id": "2fd7cbd5-94ec-4adc-b301-43968d7f0f34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86953,12 +86953,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a9092400-aa7c-4884-8ce4-6b4a76dead86", + "id": "fe2ff6e4-dc82-4720-9691-252ece488035", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87056,7 +87056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b255a05-2dee-45a7-a728-f453cb859427", + "id": "2c4ba3ee-a8db-4e99-918e-b0790f63fbcb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87149,7 +87149,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -87160,7 +87160,7 @@ } }, { - "id": "1b62ea5e-2dd7-4c2b-9b65-b33288f10694", + "id": "2294ef98-c08d-434a-98e4-531a7611ecf0", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -87197,7 +87197,7 @@ }, "response": [ { - "id": "96bf2c80-07b8-463c-b6dd-271185e7bd63", + "id": "cc9eee8b-c25f-425e-8a87-1f85e6ef32e5", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -87236,12 +87236,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 \"mollit_a9\": \"\",\n \"enim__\": \"\",\n \"sunt_52\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CERTIFICATION\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n ],\n \"approvalStatus\": \"CANCELLED\",\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 \"adipisicinge\": \"\",\n \"proidenta5e\": \"\",\n \"in15\": \"\"\n },\n \"approvalItems\": [\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"GOVERNANCE_GROUP\",\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\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"NOT_READY\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "edda4ef8-9497-4f5f-8591-fd435f894cc2", + "id": "41ee25d1-1b59-44aa-9529-aa0de2e61768", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87280,12 +87280,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01c80a0c-623c-40ed-b3f1-be4389906648", + "id": "67fdc631-fc57-4beb-8aa6-ad587bfc3c1e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87329,7 +87329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ce81552-e8b4-4fc6-81b3-0ea7cb4dce94", + "id": "85144e0f-c13e-40c5-9644-34078fc696bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87368,12 +87368,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd8b46e6-43ed-4438-8ac0-af98eae78c3b", + "id": "fbd7d660-3cd5-4905-8d1a-c4c3a7a975f4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87412,12 +87412,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e13a4c00-a71b-4732-a5e9-fdf582579982", + "id": "29dfe1ae-c8d9-448f-a277-09c817e87c12", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87461,7 +87461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3969670-5a4d-4562-b2ef-bb919f63a774", + "id": "9e585bbe-0118-487d-9d38-10c2981b17c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87500,7 +87500,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -87511,7 +87511,7 @@ } }, { - "id": "2c00fa02-2702-4c74-84ec-e7acf026f0cc", + "id": "15226a53-5cb0-4fd6-9b91-4b85f8605836", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -87548,7 +87548,7 @@ }, "response": [ { - "id": "e60c7414-aaca-45ad-b611-27da7cc2bf33", + "id": "e6663633-4996-4554-afab-2e863070378a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -87582,7 +87582,7 @@ "_postman_previewlanguage": "text" }, { - "id": "86dc9093-8f69-4bfb-a549-26775a953dc1", + "id": "1d34cbb8-a64f-4f33-9e14-32d7c5a0f269", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87621,12 +87621,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf83980c-050b-4a43-a179-b7c628ef236a", + "id": "535bd94f-6b8b-4693-b24e-34cf88be13d8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87670,7 +87670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30575f2f-6911-4910-a2f7-dcc8e6146e71", + "id": "c0583959-dbc9-44a0-a9c1-296763b29fe2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87709,12 +87709,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af6ef7af-41ae-4b1e-82fb-4f1b4e0e57d3", + "id": "de1ec48a-0404-483c-a87d-c53317d00886", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87753,12 +87753,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "064b149a-b71f-4fbc-8063-34e3d35726cc", + "id": "16e16d38-b5db-40e8-9819-f8e08558a0e5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87802,7 +87802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b3ebe84-05c1-4001-a059-60a2c1ab0795", + "id": "ac628ea4-9fa8-466c-9a45-e439d5ea99b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87841,7 +87841,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -87852,7 +87852,7 @@ } }, { - "id": "6912a119-26f5-44e9-bff4-14af2a7b0eef", + "id": "477db65a-7d56-4402-b2ed-6cf77458217e", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -87890,7 +87890,7 @@ }, "response": [ { - "id": "95e36670-bb4f-40bd-8c1c-9a2be2db4810", + "id": "7c11b08c-e602-4dad-aab3-89a5db913673", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -87935,7 +87935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df32bf19-b0f8-4349-9def-d88c01f61efa", + "id": "d9587aa2-827e-4666-9dc4-c97656305fc7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87975,12 +87975,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8eaf90ce-0c38-434b-8402-66bccad160df", + "id": "554f7df1-d0b0-4863-9cb0-ae5803f7d6cd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88025,7 +88025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb6713c5-a658-42ea-953d-36e0ccb17d07", + "id": "116e3019-b8dd-4e5b-8bb8-72dea452e599", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88065,12 +88065,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b1949097-f576-46c3-98ca-864bc1932198", + "id": "007c7932-d37f-4924-8165-e38be1c516f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88115,7 +88115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79bbe3ee-b7f9-45fa-b4bb-413381b0e98c", + "id": "0290d384-539b-4f8b-ac1a-9a50136d30dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88155,7 +88155,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -88166,7 +88166,7 @@ } }, { - "id": "3515e2e8-fb26-4e66-82e0-4a03a54a44c1", + "id": "138a8a0f-b4fe-4d02-bb21-5971dece60aa", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -88208,7 +88208,7 @@ }, "response": [ { - "id": "98979241-9817-4038-bb75-7c928dfb76ac", + "id": "16f7a41e-510c-4425-afb0-5dd59e29017d", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -88259,12 +88259,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\"\n },\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\"\n },\n {\n \"type\": \"ROLE\",\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\": \"ROLE\",\n \"id\": \"\"\n },\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\"\n },\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\",\n \"cloudExternalId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9857253a-fd46-405a-a9f9-e6f0601c720b", + "id": "aa62a3d1-dcbe-401c-ba33-6f9782ee6852", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88315,12 +88315,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52448ab5-baec-4075-af66-77662756e3b1", + "id": "75dfa89d-bf1d-4295-89ff-c0b0d3d83f4e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88376,7 +88376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeb3cb21-9bb9-486b-8b5b-26cdc0dcf528", + "id": "dc3278fc-07de-4533-8ad6-e65820774396", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88427,12 +88427,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b19d73ee-91fc-4029-a977-0114f6fdd11b", + "id": "7c83b3fc-626a-4c14-b335-290ea50de2b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88488,7 +88488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a24f5d0-83dd-45e5-a6f0-978d2a727954", + "id": "b2429904-c211-4149-bf6d-7e486d0f4e00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88539,7 +88539,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -88550,7 +88550,7 @@ } }, { - "id": "1f53dfcc-df0e-4061-a7e3-1dd29da44cf2", + "id": "7dc41a52-283b-468b-ba97-55e4e20b554c", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -88634,7 +88634,7 @@ }, "response": [ { - "id": "f7fe06fa-2f75-4844-ac6f-acc3eb1a9201", + "id": "c0b8772f-6014-49b4-b381-a506a9d3db3a", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -88727,12 +88727,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"PASSWORD_POLICY\",\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\": \"APPLICATION\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\"\n },\n {\n \"type\": \"GOVERNANCE_GROUP\",\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\": \"PASSWORD_POLICY\",\n \"id\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\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\": \"WORKGROUP\",\n \"id\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\"\n },\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29564d5a-f23b-445f-81ea-a9152a4a19be", + "id": "80d611ec-576d-4f76-8b31-bacf3d45cf39", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88825,12 +88825,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cef26bd2-3a12-4e77-b452-b47504ec0a1a", + "id": "24974ef8-d6cb-47fb-98a7-cc3462ef3692", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88928,7 +88928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "590aab9a-6e9b-4316-a675-c526d8e5fa96", + "id": "f7242890-6971-46b4-b528-7e924a25c079", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89021,12 +89021,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6057663e-a042-4088-8206-9fe5be5f37f6", + "id": "cee7d578-2293-48b5-95f7-c66b02952e87", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89124,7 +89124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c360c27-98f7-4eca-9449-7cd6d3c0f32a", + "id": "da14abaf-88bd-4f39-971c-a7ee75efe2a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89217,7 +89217,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -89228,7 +89228,7 @@ } }, { - "id": "ae646f33-da8e-4459-a38b-4be7d967ea74", + "id": "4093145d-f026-4091-abab-cc39defadb79", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -89265,7 +89265,7 @@ }, "response": [ { - "id": "559d881d-3e2e-4cdd-97f5-9d8c77a15f80", + "id": "4bdee42c-3662-4672-b219-f23c7a78562a", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -89304,12 +89304,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"ROLE\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\"\n },\n {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"SOD_POLICY\",\n \"id\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\"\n },\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a6b29a0-9459-4f42-afdb-e927b99d89a7", + "id": "ec1e858c-d477-46f5-9278-5067d6a12df0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89348,12 +89348,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "11fe557d-f580-4c20-a1ed-faf6c05783db", + "id": "176b7f51-48a1-4626-b66a-717c3bde2dac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89397,7 +89397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0881037d-8475-4008-9f24-0031ee52ddcb", + "id": "9dd1ee8c-41f5-49bf-bcd7-9aefd8675c19", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89436,12 +89436,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67353205-8a45-461c-a27c-f3e04c8af399", + "id": "64b1e57d-d49d-4ccf-831f-260274cfe906", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89485,7 +89485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d338501c-cd48-44e8-8da3-7849426b416a", + "id": "6779f6bd-b8dc-4122-b7de-5561d1556a34", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89524,7 +89524,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -89535,7 +89535,7 @@ } }, { - "id": "6794651f-d1d0-4e14-8f5f-ae689697246d", + "id": "05b85388-863b-496d-bd23-defe8f09e0be", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -89574,7 +89574,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89585,7 +89585,7 @@ }, "response": [ { - "id": "153bd3e3-e975-4c8b-95d3-cd258d62845e", + "id": "69e41b7f-ea94-47f2-b833-d439b0b25ed3", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -89620,7 +89620,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89637,12 +89637,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"approvers\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\"\n },\n {\n \"type\": \"ROLE\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\"\n },\n {\n \"type\": \"CAMPAIGN_FILTER\",\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\": \"SOD_POLICY\",\n \"id\": \"\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\"\n }\n ],\n \"accountManagers\": [\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\"\n },\n {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\"\n }\n ],\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeCount\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c5fd1377-bfce-458d-80b4-bef8d1460b83", + "id": "155625f6-7292-450d-a003-5c2da8ecee0a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89677,7 +89677,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89694,12 +89694,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "24f31506-e6a5-4a2b-ae4d-c87fa7853d9b", + "id": "6e9cd49b-0e86-4842-ae83-cd6490cb9eb3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89734,7 +89734,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89756,7 +89756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b96054a3-2325-430b-94a3-368bfb430cf6", + "id": "401ce540-7fe1-4651-9cf1-dbe9c84e7f1f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89791,7 +89791,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89808,12 +89808,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "32a04e8e-0903-48f0-b416-2a50991b88fa", + "id": "53067842-fca7-4b30-b5fa-b259476812c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89848,7 +89848,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89870,7 +89870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7544a44-2c2a-4343-9e91-a54a3bdd7c20", + "id": "be088233-2b5c-4e1c-b5a4-070ffe62740c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89905,7 +89905,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -89922,7 +89922,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -89933,7 +89933,7 @@ } }, { - "id": "60cecad3-6863-4e62-9b10-c2b4a5ec6e8d", + "id": "d44daa03-5be6-4752-9024-35384cb91081", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -89970,7 +89970,7 @@ }, "response": [ { - "id": "a93828e6-71ac-4c8b-8647-8696a4f0dbfc", + "id": "3101af19-c053-4bab-b066-765b70cf2e96", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -90004,7 +90004,7 @@ "_postman_previewlanguage": "text" }, { - "id": "dff067ad-0b27-40f7-b24c-ca32c8b39c28", + "id": "c28df5ec-5bae-4edb-aa2d-1198d6c5ff63", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90043,12 +90043,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "23102962-d7c2-4aaa-bb7c-47cdd5fbe66c", + "id": "30f9577c-37ee-4909-962b-08764f0ef71d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90092,7 +90092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb13c728-7d4c-44e4-841e-2c56ea8aaddc", + "id": "aaf606ac-2b7f-40e9-b588-e0a1b77bef0e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90131,12 +90131,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c1347034-a480-4b90-b5bb-3b3ff3e767c3", + "id": "9cb310ee-b24b-4cd2-8c92-d0cf51597b11", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90180,7 +90180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "468b6d67-e4a1-4255-8e1c-fd85c75aecad", + "id": "7d790219-169c-4fef-996d-c786315ef994", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90219,7 +90219,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -90230,7 +90230,7 @@ } }, { - "id": "12fd91d8-c6f4-40b2-9675-807c2df6cc64", + "id": "5dd54d5d-36b0-47d7-b02a-20c26744ba81", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -90269,7 +90269,7 @@ }, "response": [ { - "id": "abd41857-19f0-4323-86f7-25674be0e2a5", + "id": "02363e85-f302-4b82-879e-26da90490dc4", "name": "Exported CSV", "originalRequest": { "url": { @@ -90315,7 +90315,7 @@ "_postman_previewlanguage": "text" }, { - "id": "76ee92be-ab48-4161-970d-0691341c071c", + "id": "0d79a639-3a8d-47f1-b078-7fcf84fd740f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90356,12 +90356,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "31614da6-e965-4046-ae71-1d08ba6f4340", + "id": "4bbbe10c-aa26-4766-9e33-d8da15fe1a0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90407,7 +90407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "909e23f5-dee0-4455-a628-1bff6b83477a", + "id": "3e53a8b8-e8b6-4fbc-9bc9-2e25fbb90a7e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90448,12 +90448,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f486974-afe3-4fb0-a638-9e02bd2b91fb", + "id": "eb590821-08d4-4321-bd73-4316f129bd85", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90494,12 +90494,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa5e7534-d40d-4722-87f7-d2d215c80e54", + "id": "99e43041-5e4c-42bf-a761-82f23288f021", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90545,7 +90545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a503782e-cf58-447b-886e-9adfa5f7788d", + "id": "912c6481-8a77-4535-ba82-eedbd8d62435", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90586,7 +90586,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -90597,7 +90597,7 @@ } }, { - "id": "b6ff3484-ced4-4a40-b2cd-6c42fb1dd216", + "id": "e8c5c218-9119-41f1-817d-0fd711fd5aea", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -90652,7 +90652,7 @@ }, "response": [ { - "id": "cafbf696-651d-4233-83db-5102924a1511", + "id": "0107b767-bd88-44ef-8ba6-cebf771fa98f", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -90709,12 +90709,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"status\": \"ERROR\"\n}", + "body": "{\n \"id\": \"\",\n \"sourceId\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"status\": \"COMPLETED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b8f4f4af-ea3e-4a87-9a08-96ddc6d595d4", + "id": "2626389f-c79e-4700-904a-a695e8c6ad90", "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": { @@ -90771,12 +90771,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e8651fc3-5285-4953-8f71-2b7d036ebe1d", + "id": "44c1d905-79c5-4cc9-8900-a215c6453e82", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90838,7 +90838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d97ed929-934b-4028-9939-73679d0e8e13", + "id": "6bd75a6d-aa35-4124-952d-4e774cd6f9a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90895,12 +90895,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01fd550c-de62-4452-9b7b-5e185ce729c4", + "id": "10bcac00-f526-4c0d-834b-182e10e76319", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90957,12 +90957,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff7041ef-647d-426a-9a4c-dcf830bc4193", + "id": "a31bfa24-8b8c-4c57-8045-6199468367d4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91024,7 +91024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b57f3254-b3f8-4d60-b590-cdb133afab28", + "id": "3dd341cf-8038-4ea5-a8f3-030db020566b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91081,7 +91081,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -91092,7 +91092,7 @@ } }, { - "id": "bef3a09c-64e5-47ab-929c-abdedd0d3398", + "id": "f7bb1d8f-9fa4-4d70-aa71-0bffaae50bdd", "name": "Bulk upload status on source", "request": { "name": "Bulk upload status on source", @@ -91131,7 +91131,7 @@ }, "response": [ { - "id": "da3685b5-8946-459c-a881-f0cf069cec0f", + "id": "d0f54b58-9f30-4dde-8c70-8ba8dbf1cf92", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -91172,12 +91172,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ERROR\"\n}", + "body": "{\n \"status\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e682439c-93bf-4dff-9524-02e8b3e24a18", + "id": "7e42ea47-34b2-4806-ab76-882bb4571740", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91218,12 +91218,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26323b09-e55d-4459-8fdb-f9f83466b64a", + "id": "bf9d26cb-73bf-4e63-93f6-ce99485dd0a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91269,7 +91269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0db79b8-d4c8-4ba1-8df2-0ffe8b8f58ea", + "id": "94a6884f-e70f-4d71-9527-a0899de6835c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91310,12 +91310,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46ed8756-c808-43a0-8351-9721e11c9096", + "id": "b9279fa7-1358-4048-9145-ce70ba7dbb09", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91361,7 +91361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ea35656-c5ea-4ced-a647-e886d7c8c57c", + "id": "db8ffa30-14c4-4a26-993c-365ab6c411ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91402,7 +91402,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -91413,7 +91413,7 @@ } }, { - "id": "8875e6d8-3846-4181-a7b8-a18e4a58f03d", + "id": "b8b02838-f36f-42ee-982d-e222f07ae900", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -91452,7 +91452,7 @@ }, "response": [ { - "id": "6ad6c1bf-6a2b-4e33-bde6-3e88e543c3fe", + "id": "6c0c699c-e8fc-4a08-88b5-99a015f8c907", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -91498,7 +91498,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9e8ad317-fb37-49bd-8359-4f018a02c32f", + "id": "0ab390ca-9b7f-4821-8c0b-b979380a1526", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91539,12 +91539,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db67a9b1-ebea-402e-9219-01500544afe4", + "id": "07f153f6-7443-42e3-93da-1a0e9a6fefc7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91590,7 +91590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b6b9128-c53d-44dc-9d0f-6b364b1ee4a4", + "id": "1b8dfe24-3541-4874-817c-ff831e9d99cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91631,12 +91631,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "987c0281-c949-4ad0-b265-278d604bde95", + "id": "522fdf00-30e4-4699-84ef-3b92de33f664", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91677,12 +91677,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "82a53dbb-2970-4aa6-9abd-90862e32e583", + "id": "6397d477-7ce4-4a26-a926-8afc21899e9e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91728,7 +91728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7264914a-d895-44ff-9129-91db66052073", + "id": "a4e994ea-372c-42fa-ae0c-da5eeea0eb7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91769,7 +91769,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -91780,7 +91780,7 @@ } }, { - "id": "c13c869c-ea42-4c46-b401-31bb064f53a1", + "id": "5886cb8c-1ad8-4e88-b957-6747df9170de", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -91864,7 +91864,7 @@ }, "response": [ { - "id": "05f59205-b9a1-4d64-89a0-f6b8bdc75173", + "id": "199fa412-4d69-486e-8073-7aad6e1c4427", "name": "List of approval items.", "originalRequest": { "url": { @@ -91957,12 +91957,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\"\n }\n }\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\"\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"WORKGROUP\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\"\n }\n }\n },\n {\n \"id\": \"\",\n \"approver\": {\n \"type\": \"LIFECYCLE_STATE\",\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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "45e65442-3947-449e-bb6b-caeefede1bbd", + "id": "a7d685ee-864d-4120-8a3e-7524aad553df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92055,12 +92055,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d90d6858-e2e0-4964-a7a1-60cb223165cb", + "id": "3d8fc54a-2b5a-43d0-9fd0-815bbf7f83d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92158,7 +92158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09ee6baf-cd90-4029-a6b2-dedc7e6a955b", + "id": "f7b67033-bc5c-4362-ab48-942d6c9707ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92251,12 +92251,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6fc8b83-4af1-46d4-b0d8-e76eceb7ab23", + "id": "b511c004-5f3a-4951-94f5-bf5764d1a450", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92354,7 +92354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f83f3c0-1483-4ae8-849e-7160ef4c2be0", + "id": "2d701f99-4564-485e-a3cd-f31c9558cb8d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92447,7 +92447,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -92458,7 +92458,7 @@ } }, { - "id": "65e3a1c6-af22-492d-a813-a2faf3af7d76", + "id": "82e90a13-fb92-44cb-921c-5466e43acaee", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -92505,7 +92505,7 @@ }, "response": [ { - "id": "d7cd3a6a-02e4-45fa-a703-51728c0a5640", + "id": "cb175f39-ac55-4deb-9168-db2870168251", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -92554,12 +92554,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"CONNECTOR_SCHEMA\",\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\": \"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 \"Excepteura5\": \"\",\n \"anim_e3b\": \"\",\n \"incididunt_\": \"\"\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\": \"CLUSTER\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"GOVERNANCE_GROUP\",\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\": \"TEXT\",\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 ]\n },\n \"data\": {\n \"voluptate06\": \"\",\n \"ea_3a\": \"\"\n },\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"\",\n \"completionDate\": \"\",\n \"startDate\": \"\",\n \"endDate\": \"\",\n \"modified\": \"\",\n \"created\": \"\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "03270f68-dcf1-4826-868c-53f7672802b6", + "id": "c3b92e40-539c-483b-9fb6-6a7ae806e4ed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92608,12 +92608,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db2202ce-cd90-45d6-8599-e62c9f6d7b3c", + "id": "a992a2c8-607c-4570-afa6-10abb42cc424", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92667,7 +92667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a241ad78-2ed3-4189-8391-9c0fb490acc3", + "id": "9470458b-5fc1-4286-9f05-78429064147f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92716,12 +92716,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2be1e892-6f9d-4e97-8e7d-20f9466dabae", + "id": "9d6a2613-f881-4cab-8246-cd7bb0bb73f6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92775,7 +92775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0ebc55a-835c-4d1f-af9b-07afa45a40f6", + "id": "fc873726-405d-44b0-b2b9-7f04f0bede87", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92824,7 +92824,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -92835,7 +92835,7 @@ } }, { - "id": "6f247472-0685-4e36-99af-72754cb460a3", + "id": "82e06cf9-a113-4c62-aa1a-2ad7860d165a", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -92886,7 +92886,7 @@ }, "response": [ { - "id": "dc5c9e3d-a5a3-4b6d-a71b-adf8a2e19936", + "id": "f0681eab-51d4-4a97-998f-7c33714e0399", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -92939,12 +92939,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "738e3dcb-117b-4f35-ab09-a8ec1e7dac48", + "id": "5a54d974-3252-4d4e-a7ab-bdd9b837906c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92997,12 +92997,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0530c40a-1c9b-44d8-99b3-bd9d742bfeb0", + "id": "b1da41f7-8b2b-4090-8c2b-cd17b3e69c93", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93060,7 +93060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51824885-44fa-46ae-84bb-47b0331e8f5a", + "id": "36102a14-3172-41d9-8a69-c8241476ef3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93113,12 +93113,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2deffe4b-dff7-46b6-a7fa-9f8988f12fe7", + "id": "48fa9216-9d49-4d2a-860d-8f751321ae9d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93176,7 +93176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23b2747f-d8fa-4393-8b9b-2bc2e2720f7a", + "id": "c3185987-02c2-4ddd-a4c1-bc90637db247", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93229,7 +93229,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -93240,7 +93240,7 @@ } }, { - "id": "c88cee2d-e917-471e-a858-c92dcf7c38ee", + "id": "87fdd6ee-c114-4bba-8cd6-c3a10f115173", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -93291,7 +93291,7 @@ }, "response": [ { - "id": "ce703a58-2fc6-47ff-a50d-92bc8b792100", + "id": "24898e78-2303-4ead-b524-04284d93668e", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -93344,12 +93344,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"CAMPAIGN\",\n \"id\": \"\"\n }\n }\n}", + "body": "{\n \"id\": \"\",\n \"approver\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\"\n },\n \"accountName\": \"\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": \"\",\n \"comment\": \"\",\n \"modified\": \"\",\n \"created\": \"\",\n \"nonEmployeeRequest\": {\n \"id\": \"\",\n \"requester\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8896ee29-4f26-4ece-976f-549c486ce6ed", + "id": "3c4e1b37-b6b6-4e11-a253-7f66acc006de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93402,12 +93402,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "281f8c84-8eca-45a4-8248-a8d035494a41", + "id": "1ac6f0fb-72b3-4d63-bfac-c4f4ccce988c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93465,7 +93465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06565f47-6bfe-4b35-a6e8-3e0154be8fed", + "id": "60d099d1-c8a4-4d72-ae5a-d3c60fbd6d61", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93518,12 +93518,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12fb5716-2b8d-4e4b-b902-fc024152cebe", + "id": "042e8b33-6c33-457b-8e87-a311d19abfd6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93581,7 +93581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bfbb5d2-6670-4d13-b396-c6e4177ef723", + "id": "c22e2bd6-815f-4898-b902-9ab13d876b44", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93634,7 +93634,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -93645,7 +93645,7 @@ } }, { - "id": "fe490244-d9a8-4cb2-860b-202d7eb51fdd", + "id": "23e2b6ef-4903-4b62-af16-5d81af4f9434", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -93683,7 +93683,7 @@ }, "response": [ { - "id": "3432950e-64a1-459f-852f-eff2aa3f1eaf", + "id": "893ef08b-a452-4ad6-8d5e-9f570ceffa3c", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -93728,7 +93728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff052843-447f-41e7-9afb-a249ff4e60e9", + "id": "f28e030c-cf2a-4a1b-9e57-e1da4ee9ba68", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93768,12 +93768,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b14fb45-ab04-41fe-af16-06450fd6062a", + "id": "aa413a32-4d18-4567-8e2c-aeb79a29a3ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93818,7 +93818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acb196b5-50f4-4f0a-af0d-6bdf41207ced", + "id": "791eb865-23f4-4941-9be4-05427b229453", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93858,12 +93858,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ca33505-b73c-4c2e-a25d-e20413df06f4", + "id": "a0e5ac2d-a8fc-4c71-944c-9d17652fe75a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93908,7 +93908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab0ae3a6-744a-4e8c-8fe6-b5d9248d86c7", + "id": "9fb37e6f-912a-46db-9539-0bfae6222462", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93948,7 +93948,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -93959,7 +93959,7 @@ } }, { - "id": "c12d42e5-7c78-41db-a036-044265c7fda0", + "id": "f24f53d4-5779-47e6-a6e0-6302173323d3", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -93997,7 +93997,7 @@ }, "response": [ { - "id": "35401a50-d9bc-4208-baca-f4452f78edcf", + "id": "b9a77a16-232d-47e7-84c5-0d0fa67d961e", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -94042,7 +94042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a452d0f9-a99b-4ecd-a7fc-428fd91db8c3", + "id": "00dd4e05-bf3d-4b6e-89f6-3a437e613859", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94082,12 +94082,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "035f0912-3b61-4399-8eb0-7dbce12ec266", + "id": "3114fa91-1104-43fd-af08-08e67ace0fcd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94132,7 +94132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f704dcc6-ac9c-4550-87d5-a139d9ea2b56", + "id": "d2302d84-5533-4a66-8add-4e4eb3fafc3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94172,12 +94172,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f30222c1-3bba-4d46-b3d9-7fc684b1b2ec", + "id": "eba607fb-edb1-431e-a7d0-0029a680b509", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -94217,12 +94217,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89a00970-b7e7-4c18-aeb4-79d98835bdb4", + "id": "ed9095a6-f96c-441c-bb47-24fcfe7aed23", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94267,7 +94267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e542144f-bd38-4432-926d-fe54515892ab", + "id": "074a2074-ba36-403a-91e9-139a3fe662e8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94307,7 +94307,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -94318,7 +94318,7 @@ } }, { - "id": "46ed9c36-e3e9-4290-9184-d0f097f0cd94", + "id": "ba911592-6d4e-4a9b-95a9-8053e2903122", "name": "Create Non-Employee Source Schema Attribute", "request": { "name": "Create Non-Employee Source Schema Attribute", @@ -94369,7 +94369,7 @@ }, "response": [ { - "id": "a03bda86-7911-4d1b-b8ae-1bbca875e974", + "id": "f2cb28fd-4c4c-4ba5-b621-966b65adad9d", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -94422,12 +94422,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": "299d890f-40f4-453d-9c5d-6652197ff123", + "id": "a13911a1-8500-4700-8b1f-744072b0dc1d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94480,12 +94480,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64620d24-8115-46f4-824b-47192b209392", + "id": "d1543e42-c9d2-42c4-9ad9-d29e98f8f03c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94543,7 +94543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a78b02e-67eb-40a6-8053-4255bc46c876", + "id": "68f222ec-ad01-4e63-994c-2049c0c0b57e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94596,12 +94596,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27929afe-6da3-4bc1-82f1-94d034ee20d1", + "id": "9f5c83ac-cd56-488e-9e0a-74a937a34bc5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94659,7 +94659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5772b65b-bb9c-4066-a222-c09ec49a1d81", + "id": "fc6664c9-20ce-49ac-84a3-32038d29975e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94712,7 +94712,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -94723,7 +94723,7 @@ } }, { - "id": "60f29440-d930-4a2c-9ea6-416d625ca53f", + "id": "c1f71bf1-6cf0-4a84-bb1d-ce303c6c874a", "name": "Delete all custom schema attributes", "request": { "name": "Delete all custom schema attributes", @@ -94761,7 +94761,7 @@ }, "response": [ { - "id": "71035402-abb2-4bf1-a662-b5386a14d1a7", + "id": "2d0aceb3-5b66-4c7f-8d42-1d549e783f2c", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -94796,7 +94796,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4ee8e741-6e74-425f-a1c4-7becc62cbd42", + "id": "c38bb53a-3a9f-4205-ba23-5634e7e3b0af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94836,12 +94836,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6c980f7e-140e-4cac-b7ae-929aa8b515c3", + "id": "41c4d08a-9f5c-4ed8-9757-b3a648551c78", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94886,7 +94886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4adcd490-763a-419c-85bd-34ef3eb412b3", + "id": "de60b7ea-2100-430a-a857-ecc025c42e62", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94926,12 +94926,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68409b29-519d-4db5-b529-66760b870dd8", + "id": "0b336cc1-1dc6-4668-a803-0a442ec1cc16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94976,7 +94976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9f37f1d-a356-41f0-81a8-a305ca49e6c2", + "id": "37450ef5-8a6a-4962-98fa-e76088962da2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95016,7 +95016,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -95027,7 +95027,7 @@ } }, { - "id": "e200904d-de37-4341-a65c-87999c9ba16c", + "id": "82b3f6c9-cd84-468e-9bc6-c08ecde88707", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -95072,7 +95072,7 @@ }, "response": [ { - "id": "a3fb6872-b510-4fd4-9c40-b590632919f8", + "id": "2531ccc1-97ae-4f0f-abb8-c6ba2918737e", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -95113,12 +95113,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": "3170f85d-ec5b-4b54-b291-72cc16bc5e13", + "id": "631f5877-06f1-4469-9ce6-78352c8190b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95159,12 +95159,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7cad3b9-08b8-4334-8a48-100ee3d2110f", + "id": "dc4ea172-7080-424b-aa43-adde39414c0e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95210,7 +95210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd35361d-db2c-41e0-9811-77a6fb106b7f", + "id": "276e15c9-22a3-4ec1-91a8-b340768a57e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95251,12 +95251,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37990e4d-8aaf-47c1-933b-7f88c4bd36e3", + "id": "83f6e6b4-b059-4733-8656-184600a9f677", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95302,7 +95302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b05911d-81af-4c33-8b62-72d197190697", + "id": "f50c7bdf-5f24-477d-9e36-6df0eaea58e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95343,7 +95343,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -95354,7 +95354,7 @@ } }, { - "id": "a76f8e15-eb01-43d3-b49a-4dd93ba5890b", + "id": "5aa56e8a-8709-418a-903f-5234f693a1ca", "name": "Patch Non-Employee Source's Schema Attribute", "request": { "name": "Patch Non-Employee Source's Schema Attribute", @@ -95401,7 +95401,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -95412,7 +95412,7 @@ }, "response": [ { - "id": "b84cec9f-3935-4fc4-9fa7-bf5ec9660646", + "id": "1df883da-bac4-4c91-ad3c-090233ef674f", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -95449,7 +95449,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -95466,12 +95466,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": "97d35d34-4c6f-4f32-b4fd-c10917c4d65a", + "id": "06b966e3-c1f3-4237-bd3c-3a46317555f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95508,7 +95508,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -95525,12 +95525,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f982950-6e66-4e52-adc2-cb01697004b6", + "id": "77f6fbb0-5d8b-4b9e-9030-943eab61ffb3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95567,7 +95567,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -95589,7 +95589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25c6d429-4a79-45fd-adff-df76d6f3f218", + "id": "02baba01-fa4f-4ccf-a8cb-fd4363684de5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95626,7 +95626,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -95643,12 +95643,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c60452a9-1765-4f30-8ee9-78b804ab07f0", + "id": "6ec5a997-4aaf-465a-b343-26ca7543cf63", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95685,7 +95685,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -95702,12 +95702,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00f41f78-6b91-45eb-82a4-5de7eec97bc4", + "id": "9b95d833-0a0c-4c4d-a3a3-06440b05b8c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95744,7 +95744,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -95766,7 +95766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eca970ec-d698-4d9f-bc87-76acc03a3076", + "id": "0d6884b8-130d-4d7c-b567-4317c3e4daeb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95803,7 +95803,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -95820,7 +95820,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -95831,7 +95831,7 @@ } }, { - "id": "5a58fb64-6e83-4e18-aaec-b6db817ebf91", + "id": "a50978cd-e7b8-4fa2-8643-fd5db6981bb6", "name": "Delete Non-Employee Source's Schema Attribute", "request": { "name": "Delete Non-Employee Source's Schema Attribute", @@ -95876,7 +95876,7 @@ }, "response": [ { - "id": "2ade38fe-2a1c-4e43-8d75-950180d16292", + "id": "b3b99299-0d1b-409d-b97b-21d37847b495", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -95912,7 +95912,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e537c60b-144d-4fb7-b698-22ba45c05202", + "id": "fd664fc9-eca1-4536-baed-f757d38d625f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95953,12 +95953,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a6992f95-ffec-460a-a622-b0976472583a", + "id": "c40a8825-1c15-4455-be05-31b801ed4d28", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96004,7 +96004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cb00f61-0028-4f84-9e6d-124d9ce79fe8", + "id": "4961e021-c1ee-4f4c-8031-a864ffb4a67e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96045,12 +96045,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04b41abf-52c0-4a9a-8559-ec4192c29dcb", + "id": "a81aa991-7058-4953-a1e7-e9b3e0263261", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96096,7 +96096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97417bcb-0401-4139-8cf0-97b7de9f4434", + "id": "2fec8863-321f-4e50-ba98-37b00cc1dc97", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96137,7 +96137,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -96154,7 +96154,7 @@ "description": "", "item": [ { - "id": "51bc558c-4dba-40fe-93fc-613492cec4d0", + "id": "350ca7fe-3c4e-4a92-966b-fd2c771e6998", "name": "Change MAIL FROM domain", "request": { "name": "Change MAIL FROM domain", @@ -96196,7 +96196,7 @@ }, "response": [ { - "id": "2de82c27-2fea-4c9d-b15a-c1b8ba107d62", + "id": "c25263ae-0d89-4028-a762-1cdbed0c68bd", "name": "MAIL FROM Attributes required to verify the change", "originalRequest": { "url": { @@ -96247,12 +96247,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\",\n \"mxRecord\": \"\",\n \"txtRecord\": \"\",\n \"mailFromDomainStatus\": \"SUCCESS\"\n}", + "body": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\",\n \"mxRecord\": \"\",\n \"txtRecord\": \"\",\n \"mailFromDomainStatus\": \"FAILED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "696e668c-f121-4e9c-a16f-c395e1254f00", + "id": "54b13110-460f-4088-acd1-848b91c6f697", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96303,12 +96303,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8e9d1237-ab04-47a9-bb8e-8cc194be367d", + "id": "129c0af2-4042-4455-9b90-c3f318b09a02", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96364,7 +96364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6293b642-0c71-4447-b60a-b28a8843a2e1", + "id": "93128116-5bc7-4c9b-917a-1b9e2e668b30", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96415,12 +96415,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fddc4281-7611-4ebf-a034-1aad764996b2", + "id": "5cfe1324-80e2-4b2b-a7a0-75ef45f936db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96476,7 +96476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ccd02a5-2f6e-489f-bdf6-0d6593d33c0a", + "id": "8518901a-050a-43a6-8b9b-539411e894eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96527,7 +96527,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -96538,7 +96538,7 @@ } }, { - "id": "d2e86b93-a44b-4dc3-9758-0c5d29004c89", + "id": "b0630469-0f2c-408a-be1b-eeba1f18b62f", "name": "Get MAIL FROM Attributes", "request": { "name": "Get MAIL FROM Attributes", @@ -96583,7 +96583,7 @@ }, "response": [ { - "id": "4eedf118-279b-43e8-972e-1e61c943465a", + "id": "d2602ab2-a92c-4bd0-aab0-37cfce03ca34", "name": "MAIL FROM Attributes object", "originalRequest": { "url": { @@ -96632,12 +96632,12 @@ "value": "application/json" } ], - "body": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\",\n \"mxRecord\": \"\",\n \"txtRecord\": \"\",\n \"mailFromDomainStatus\": \"SUCCESS\"\n}", + "body": "{\n \"identity\": \"\",\n \"mailFromDomain\": \"\",\n \"mxRecord\": \"\",\n \"txtRecord\": \"\",\n \"mailFromDomainStatus\": \"FAILED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a6b6f56-f1c7-4c2b-a433-293a75d686fa", + "id": "c9c15362-0d7f-40f8-adfc-0d5038c22434", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96686,12 +96686,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56fc56dc-6af3-4da0-9dca-78889a307162", + "id": "5d9ef003-4d45-4f1d-84a5-57c8fcefb69d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96745,7 +96745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2017a66-e2da-4275-8f01-82b824819f09", + "id": "94e9f874-8228-4c15-a396-2576ad0f3f3f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96794,12 +96794,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3dc644f8-2eb5-488c-a2f8-099da09bdc39", + "id": "3ca63dfb-6d94-47c8-9184-3089c4ebfa27", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96853,7 +96853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbfc68e9-990b-48f0-b484-aefe78da21ac", + "id": "7b3cfb2d-3dd9-4a58-bcb5-93cbc5b6c42b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96902,7 +96902,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -96913,7 +96913,7 @@ } }, { - "id": "9893d6cb-896f-4f3f-ab7a-5c92a2be10dd", + "id": "7421e9df-5de2-4cf3-b228-407451456bcf", "name": "List Notification Template Defaults", "request": { "name": "List Notification Template Defaults", @@ -96970,7 +96970,7 @@ }, "response": [ { - "id": "774755be-209b-460d-b988-b52271399d84", + "id": "6544abd6-476a-4b85-b245-dfcf3d78bf51", "name": "A list of the default template objects", "originalRequest": { "url": { @@ -97036,12 +97036,12 @@ "value": "application/json" } ], - "body": "[\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 {\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]", + "body": "[\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 {\n \"key\": \"\",\n \"name\": \"\",\n \"medium\": \"EMAIL\",\n \"locale\": \"\",\n \"subject\": \"\",\n \"header\": \"\",\n \"body\": \"\",\n \"footer\": \"\",\n \"from\": \"\",\n \"replyTo\": \"\",\n \"description\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2417c87-002b-4c4f-a94c-09f8f7a67908", + "id": "50a8a1c6-416b-4088-a526-8bf6e39625ee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97107,12 +97107,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b700201a-3254-4bd2-91fd-5da5c2f6df6d", + "id": "dc2df6ad-d18a-42d2-82d6-3ab5461d7686", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97183,7 +97183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "333dc0a0-4fab-4460-af49-2d932bbfcdaa", + "id": "0dc230dd-398f-4f7d-a8b5-faa79602c58d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97249,12 +97249,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6720e63a-0543-424f-98e2-3bbf8e3aff60", + "id": "21bf3810-3fec-4f1b-84a1-c4ae96e6691e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97325,7 +97325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5851b0fd-1928-4e46-90b4-9dfe295dbe1b", + "id": "3870406d-f3a1-4a5f-bf0a-67b9e3b51e60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97391,7 +97391,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -97402,7 +97402,7 @@ } }, { - "id": "4143296f-73a2-44b3-9d50-bf72e874f504", + "id": "457a3717-9b15-4765-b9f0-6a5417013e0d", "name": "List Notification Templates", "request": { "name": "List Notification Templates", @@ -97459,7 +97459,7 @@ }, "response": [ { - "id": "e9181f9c-72e9-4e6c-ab34-0f14feb998e1", + "id": "9a9defed-599d-4f5e-bf9e-5f0833111198", "name": "A list of template objects for your site", "originalRequest": { "url": { @@ -97525,12 +97525,12 @@ "value": "application/json" } ], - "body": "[\n {\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 },\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]", + "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\": \"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 }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a08b60c9-ee02-4b91-8681-52690ee50c83", + "id": "14ff5088-ba7c-4370-bcae-14b13fc29417", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97596,12 +97596,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "95d91d51-89bb-41c4-8aaf-ffe92a0cf234", + "id": "566ffcbc-c806-4289-bae9-d2550e1e2601", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97672,7 +97672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "298a161a-023f-4809-811a-19d02366102e", + "id": "2bdca093-a423-461e-a899-af6469e221e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97738,12 +97738,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "110ec0b6-d815-42a1-af37-d126dbf08f85", + "id": "9429f5a6-b71f-45a0-baff-a06242c932bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97814,7 +97814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6bd2b9e-e2fb-481b-88f9-83ab4c4a48cf", + "id": "352b0716-0824-450e-8ac3-a084404d59d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97880,7 +97880,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -97891,7 +97891,7 @@ } }, { - "id": "76920155-d901-4bd7-b6da-45cb0babb3ba", + "id": "28623bc5-26cd-4580-9918-7c683d1c5938", "name": "Create Notification Template", "request": { "name": "Create Notification Template", @@ -97922,7 +97922,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -97933,7 +97933,7 @@ }, "response": [ { - "id": "55b1e830-1b11-43f9-8988-931a39b0d795", + "id": "15f230cf-d5b8-46cc-a5a4-419f18afce45", "name": "A template object for your site", "originalRequest": { "url": { @@ -97967,7 +97967,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -97984,12 +97984,12 @@ "value": "application/json" } ], - "body": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\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\": \"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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "519080ee-1e08-475f-aae5-9b71f3e74adf", + "id": "6ac347fe-4036-4306-ae16-7b2ed930144e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98023,7 +98023,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -98040,12 +98040,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5b47078-2439-4cf9-9c08-55f7942c41a8", + "id": "c009103d-e33d-4206-9e98-e31fc5e2c09b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98079,7 +98079,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -98101,7 +98101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f160fd43-dcfb-433c-ae3b-226f6b1f9777", + "id": "db58af5e-53b8-40ae-b6cc-70c49303e701", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98135,7 +98135,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -98152,12 +98152,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68e072ea-9fb0-4173-bd03-70ef62cadde1", + "id": "15e007e3-7b08-42fe-b2e7-f709d9a014f1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98191,7 +98191,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -98213,7 +98213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8376360a-12ab-4342-95a2-9cced8daf0c5", + "id": "84627451-ee83-4d69-903c-fbe0d528d58d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98247,7 +98247,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\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\": \"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}", "options": { "raw": { "headerFamily": "json", @@ -98264,7 +98264,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -98275,7 +98275,7 @@ } }, { - "id": "d907a350-069f-44f5-b59a-0bea60c54eaf", + "id": "3edf2f20-cecb-420c-bfe9-7b018c122ca2", "name": "Get Notification Template By Id", "request": { "name": "Get Notification Template By Id", @@ -98312,7 +98312,7 @@ }, "response": [ { - "id": "d5f3ba6a-ec49-43d5-8b17-935994b39f65", + "id": "85492abd-941b-46e9-a557-b26dd0a738e0", "name": "A template object for your site", "originalRequest": { "url": { @@ -98351,12 +98351,12 @@ "value": "application/json" } ], - "body": "[\n {\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 },\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]", + "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\": \"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 }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7de7431d-ec5e-4f65-9552-6e15fc93849f", + "id": "4575f3bb-f0d2-486b-bd9c-522f46b34303", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98395,12 +98395,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "17c751f9-bf83-4327-b4dd-f6929e553f13", + "id": "8244b5ec-be76-41e9-8d5e-0bfb361a8b7c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98444,7 +98444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "198ce627-6c9f-4b82-9f86-5eb4fd6a9549", + "id": "ad7efd80-146d-4156-8ba7-dca1b9f70cb4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98483,12 +98483,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8c2fdfb8-e184-4ec5-8aa4-4dac0ba588c4", + "id": "1dd8998f-2978-4324-888a-6ca9bcb85ff3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98532,7 +98532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd647854-bc84-4e68-bb3a-ae7d30a902da", + "id": "fc508a53-dedc-4a9e-9a55-12cb901a777a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98571,7 +98571,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -98582,7 +98582,7 @@ } }, { - "id": "e6e95d77-9f05-415b-8933-30e2884126c4", + "id": "35ff361b-f775-40d9-9b02-c6294c6c5b28", "name": "Bulk Delete Notification Templates", "request": { "name": "Bulk Delete Notification Templates", @@ -98614,7 +98614,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -98625,7 +98625,7 @@ }, "response": [ { - "id": "2f7275e6-0561-4b02-8215-3ca7830dc1c3", + "id": "26788ce6-9f09-403b-ab6d-62a477d0c612", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -98656,7 +98656,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -98672,7 +98672,7 @@ "_postman_previewlanguage": "text" }, { - "id": "814eb86d-9439-432e-88c8-e8bd4a0a5ac6", + "id": "f36f079f-0f6a-49d4-a0e5-3fa1d2ed5362", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98707,7 +98707,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -98724,12 +98724,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc2e34a3-f2ef-4403-b9bb-6dee2b652775", + "id": "1836bee5-9c55-4c1f-980b-186bb94bff8d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98764,7 +98764,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -98786,7 +98786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29088ad2-fed3-4cb2-bbdf-6c265e7de3ce", + "id": "f53ffb3f-713b-444c-9dbe-758edb1a77cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98821,7 +98821,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -98838,12 +98838,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6334928e-d79e-41f5-9d47-d370cf4d0028", + "id": "60abbe29-0a70-4fb6-bd4d-4a57e5a7eee1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98878,7 +98878,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -98900,7 +98900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e062b11-0ae8-4e5d-9ef1-e5319ad89765", + "id": "a1ba0fe2-97c9-4fc4-90b5-ed0a1ac4f62f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98935,7 +98935,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n }\n]", + "raw": "[\n {\n \"key\": \"\",\n \"medium\": \"PHONE\",\n \"locale\": \"\"\n },\n {\n \"key\": \"\",\n \"medium\": \"SMS\",\n \"locale\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -98952,7 +98952,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -98963,7 +98963,7 @@ } }, { - "id": "ce10257c-29ed-4505-b5b4-46189d970bd7", + "id": "3ae4209c-4c86-4c07-ad7a-787bd6307c64", "name": "Get Notification Template Context", "request": { "name": "Get Notification Template Context", @@ -98992,7 +98992,7 @@ }, "response": [ { - "id": "26f5853c-3196-4fad-b7ae-7555e7d89318", + "id": "fb41e1ce-54bf-45f5-9efd-227a798f869f", "name": "Notification template context attributes for a specific tenant.", "originalRequest": { "url": { @@ -99035,7 +99035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9e0ead0-ef4c-47f6-81b3-011fd8ff4368", + "id": "bbfd1c2b-aac6-4030-8c93-bf3ffc56549d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99073,12 +99073,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e6b8b338-d119-415d-9ec3-728ad466ae42", + "id": "4fb8d86a-515f-4ccc-b383-c547a05c254f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99121,7 +99121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80454818-c472-48ac-b1ee-49902094bbc6", + "id": "550de9e0-b2b1-42a6-905f-dab8f1202d2b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99159,12 +99159,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a389b62d-264d-4eea-a018-b0a774b5cd79", + "id": "41aa291c-25b8-48bd-8d54-ee1f04417ec3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99207,7 +99207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d66de91d-a09a-4465-9847-ba7ac3af59ba", + "id": "1c951a92-1dec-4075-a810-4263de97f9a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99245,7 +99245,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -99256,7 +99256,7 @@ } }, { - "id": "66d86507-c99e-4c77-b146-34249af3aecc", + "id": "3211acb6-29ec-4d47-bc75-6d5d210370a7", "name": "Get Notification Preferences for tenant.", "request": { "name": "Get Notification Preferences for tenant.", @@ -99293,7 +99293,7 @@ }, "response": [ { - "id": "8ebf65cd-875f-428a-861e-045e7e94a67f", + "id": "af261c61-f555-4726-ac70-00347e87d70b", "name": "Return preference for the given notification key.", "originalRequest": { "url": { @@ -99332,12 +99332,12 @@ "value": "application/json" } ], - "body": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "body": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"PHONE\"\n ],\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0dfd404a-d294-4f66-93ef-e8a0b6af5354", + "id": "8900e8a0-716d-4cb0-a8a5-86b31a1dfffd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e907bef-e0e7-43aa-a778-f86e95eef004", + "id": "fe469f62-ea5c-4728-9193-f705aeef351f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99425,7 +99425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fe1d813-7859-46c5-bc38-83bf014ccf4a", + "id": "e21fda4f-eb32-47c6-bb6b-128ddcc6c0d6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99464,12 +99464,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e466183-d2e7-47b4-81c1-4a21eb078c54", + "id": "77e9fd17-5d83-4615-b94c-b0ad13eb6ca9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99508,12 +99508,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5092d6a-daaa-4242-921b-57af4a288e9b", + "id": "5f70e091-d82e-404f-bb09-1df22b37c97e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99563,7 +99563,7 @@ } }, { - "id": "c65e0af8-1032-494b-9b18-be7708f01593", + "id": "0dbc4773-646a-4baf-8ea3-a4578b48d92c", "name": "Overwrite the preferences for the given notification key.", "request": { "name": "Overwrite the preferences for the given notification key.", @@ -99602,7 +99602,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"PHONE\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99613,7 +99613,7 @@ }, "response": [ { - "id": "8ddbd29b-7f1b-41cc-bdee-16510854b374", + "id": "f372598f-ef6c-41b0-a37f-6d9712a6edcd", "name": "The preferences were successfully replaced, and an echo of the new preferences are sent back to caller.", "originalRequest": { "url": { @@ -99648,7 +99648,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"PHONE\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99665,12 +99665,12 @@ "value": "application/json" } ], - "body": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "body": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"PHONE\"\n ],\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b22ec108-774e-46be-b9cc-78d5c1fb7a20", + "id": "f012354f-41f2-4395-8a9a-5d4356118203", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99705,7 +99705,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"PHONE\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99722,12 +99722,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d16dd6a4-8d7e-4469-bd3a-d913bca4fff8", + "id": "835ba067-3a58-4c67-a013-3341b06df980", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99762,7 +99762,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"PHONE\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99784,7 +99784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68bbf97e-4b16-4531-b121-dcbfdd1ac4dc", + "id": "c1e71e73-480b-4716-8451-3781f619ab10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99819,7 +99819,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"PHONE\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99836,12 +99836,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c8988e2d-6f1a-4ad5-bcae-d48b2cb0ac17", + "id": "196ae0a3-bc15-4b7c-9f6d-960fc2292a26", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99876,7 +99876,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"PHONE\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99893,12 +99893,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "843458ae-4961-4f80-b835-d28a61cd2d2e", + "id": "324bbe91-3b2e-4eb1-b1be-e6a816b79abf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99933,7 +99933,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"TEAMS\"\n ],\n \"modified\": \"\"\n}", + "raw": "{\n \"key\": \"\",\n \"mediums\": [\n \"TEAMS\",\n \"PHONE\"\n ],\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99961,7 +99961,7 @@ } }, { - "id": "4cdb3741-f0b2-4fcf-a063-c5ec55db5102", + "id": "97627d36-7a7e-4ad2-802a-60f85b99d821", "name": "Send Test Notification", "request": { "name": "Send Test Notification", @@ -99992,7 +99992,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100003,7 +100003,7 @@ }, "response": [ { - "id": "c82df494-9908-4816-b088-d254f7ea5de5", + "id": "248a1c2a-05bf-415c-8e5d-0a1ca8fd6813", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -100033,7 +100033,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100049,7 +100049,7 @@ "_postman_previewlanguage": "text" }, { - "id": "cb7bcba0-06d3-4769-a027-b556e714bdab", + "id": "3e14116d-3024-4839-9927-bd9644377a1d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100083,7 +100083,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100100,12 +100100,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15f16cff-de29-4515-869b-96d912bee2c2", + "id": "3f770a10-306f-4e8c-9acc-4268621507fb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100139,7 +100139,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100161,7 +100161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "765a9a31-bbc9-4e2a-bf3c-1783467be80e", + "id": "a711061e-b505-4971-8571-efc2ee4c77cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100195,7 +100195,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100212,12 +100212,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b1962618-c186-44b7-bdd7-75208137141a", + "id": "369e83c8-8f33-416c-a2aa-57402aee3e6d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100251,7 +100251,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100268,12 +100268,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5288f5ca-eaa7-479b-8e5c-5d67e5c46a03", + "id": "ddb333a3-aea3-4eba-8756-0f9b33b8a77d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100307,7 +100307,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100329,7 +100329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96697fe1-dca3-4b3e-879e-77d3f411998c", + "id": "3c78dd01-951d-4d63-b8f7-be80cd8357e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100363,7 +100363,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"\",\n \"medium\": \"EMAIL\",\n \"context\": {}\n}", + "raw": "{\n \"key\": \"\",\n \"medium\": \"TEAMS\",\n \"context\": {}\n}", "options": { "raw": { "headerFamily": "json", @@ -100380,7 +100380,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -100391,7 +100391,7 @@ } }, { - "id": "5627fa65-f8b4-431d-8dfb-f571b753db1c", + "id": "e130e9d7-47e5-40bd-8dcd-23a381fe4e40", "name": "List From Addresses", "request": { "name": "List From Addresses", @@ -100466,7 +100466,7 @@ }, "response": [ { - "id": "1f325c16-bef7-48fb-b07d-85f5e1955781", + "id": "041c4e1c-450b-4307-b51f-ee7c961d856d", "name": "List of Email Status", "originalRequest": { "url": { @@ -100550,12 +100550,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"SUCCESS\"\n },\n {\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"PENDING\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"FAILED\"\n },\n {\n \"id\": \"\",\n \"email\": \"\",\n \"verificationStatus\": \"PENDING\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f28605c9-1f74-4e41-9066-55969fbaa5ef", + "id": "cf73050f-b06b-436f-97cc-88e9f0c4f884", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100644,7 +100644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "903ee423-b203-46aa-8a66-6a5843ae3607", + "id": "27352b90-a383-4c49-88b5-79563c46ab8b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100728,12 +100728,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6dc16724-e13d-40ed-8c3d-de4ce71a12cc", + "id": "4e47e22b-2c30-4560-9e0f-c20fa01818ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100822,7 +100822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4a3392d-75ed-46c5-8ee2-a13b4e6d7810", + "id": "437e64be-0d08-48a6-b6fd-2f0a0d5ac0b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100906,7 +100906,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -100917,7 +100917,7 @@ } }, { - "id": "8b9077f4-cb4b-425f-940d-b7b3a6aa7050", + "id": "4e200cd0-e61c-421c-895a-ecc7731046d0", "name": "Create Verified From Address", "request": { "name": "Create Verified From Address", @@ -100959,7 +100959,7 @@ }, "response": [ { - "id": "e9fe9f8a-5aa0-40c9-9a26-1a9110272d30", + "id": "2e8088b3-e0b4-45b0-8f34-262906c21caf", "name": "New Verified Email Status", "originalRequest": { "url": { @@ -101015,7 +101015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cec01a62-b7db-4387-bcf5-7d83292c9e41", + "id": "5cd8ab9b-4fcd-41c9-8557-c7b7db072a36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101066,12 +101066,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e00a24b-be51-4dd9-be79-21481cd72ca4", + "id": "0b417330-3feb-4705-b6d8-016d810c491d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101127,7 +101127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "610dc864-0ccb-4839-96d8-1f4e4b06de2f", + "id": "20a688aa-ae48-490f-8a41-97482b12f707", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101178,12 +101178,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85f1eb03-4216-4446-abe7-70edbee92715", + "id": "1b66ed77-83f8-4385-85da-2e50daf1fcc8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101239,7 +101239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaee2b05-e027-46ec-b658-3aa02d81d863", + "id": "3d2290f5-f17f-4f26-bb7b-8f76d6718289", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101290,7 +101290,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -101301,7 +101301,7 @@ } }, { - "id": "79f98520-3fcb-47b2-8c26-cd15f9e4d2af", + "id": "8f46c667-0971-4c13-9eb4-3d5ae2d40d79", "name": "Delete Verified From Address", "request": { "name": "Delete Verified From Address", @@ -101338,7 +101338,7 @@ }, "response": [ { - "id": "02f70998-e938-438e-af27-43bf23ea693f", + "id": "5ed3cbe0-ad37-4cb5-8f56-eb9386b935a4", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -101372,7 +101372,7 @@ "_postman_previewlanguage": "text" }, { - "id": "08008fc0-10d1-4506-bd08-1e5e7485ef64", + "id": "7024ff1f-2bcb-4454-9ca2-f5ef745f8b55", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101411,12 +101411,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "60db5c2b-9a65-45f0-84f2-51b51f0fca87", + "id": "300ceb03-7191-42f2-a99c-5cc499155b6d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101460,7 +101460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92fa0889-577c-49cb-b66d-32dd80359607", + "id": "3aa65372-2cb2-42f8-9fbb-9973bbab7ef3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101499,12 +101499,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a88106f-b20c-4b9c-8725-7e0ec59c5447", + "id": "26f7657e-910d-46fe-a5c1-704396d17422", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101543,12 +101543,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e67cfa00-b78e-4e3b-8069-d70d0682b14a", + "id": "7918eac2-dbd7-4b45-91a8-85b031f6f1f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101592,7 +101592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97d1ab4f-1191-478b-a2af-d8a605958379", + "id": "71eea974-2ccf-4a9a-ba35-900d26142b6a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101631,7 +101631,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -101642,7 +101642,7 @@ } }, { - "id": "52b3df08-afbb-488c-96a9-cbe4e602f3f0", + "id": "c5088358-c2b9-4220-9315-f6bf592c7a4f", "name": "Get DKIM Attributes", "request": { "name": "Get DKIM Attributes", @@ -101671,7 +101671,7 @@ }, "response": [ { - "id": "f057876b-9396-486e-b448-e89e35ef6e7b", + "id": "d017b00c-e046-477b-a73c-4ae9538513a5", "name": "List of DKIM Attributes", "originalRequest": { "url": { @@ -101714,7 +101714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d00cd4e-5e5e-4a65-9297-282da5cfb222", + "id": "6fea5e57-2679-4697-b2ea-63341f27057a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101752,12 +101752,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6da3502d-78b9-4c27-8c76-3e7bc39a7d7d", + "id": "832ee1bb-9035-48b0-ba12-bb442f667cf6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101800,7 +101800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e61dcb8-cd8b-4862-8b39-42df387bcf45", + "id": "df52506c-8945-4d83-b4f3-05387f3d5923", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b22ca9f-86fe-4560-b756-e2fa7a2f6d57", + "id": "51ac4458-59b6-4d29-ba4a-9ab6f4eb72ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101886,7 +101886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1016b922-ff79-4871-8d59-7f7a3a38ab14", + "id": "9fc5a86e-6702-4cff-828a-fd37ddbb73ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101924,7 +101924,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -101935,7 +101935,7 @@ } }, { - "id": "d66d174b-cca2-4f76-96c2-65e218d7c522", + "id": "17a5470d-d8e6-4bcc-a818-799cf6ff6701", "name": "Verify domain address via DKIM", "request": { "name": "Verify domain address via DKIM", @@ -101977,7 +101977,7 @@ }, "response": [ { - "id": "f2ada392-7957-4ecb-a379-35bbd0035ad4", + "id": "002bcbb7-1373-4c10-934b-b15a81e06252", "name": "List of DKIM tokens required for the verification process.", "originalRequest": { "url": { @@ -102033,7 +102033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "365bbb05-31ec-41f6-bc36-216ff0347d11", + "id": "1707cee3-b0f2-41ee-869b-be8e2e43cccf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102084,12 +102084,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a402ec8-bf35-4df7-8bb9-1e1b39134cc4", + "id": "87ed5ddb-22f2-4840-aaf7-bb5ada56b111", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102145,7 +102145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcc50adc-d8c9-47a3-99ff-bec133470591", + "id": "93113ed4-98ae-42ba-9d76-4616b0a02221", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102196,12 +102196,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c96720d-ef35-4eae-a39a-d1655ffd1711", + "id": "10e67abf-939e-429a-a4de-6cacf069f86a", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -102257,7 +102257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4868c6d7-08e2-44f6-9d4f-13561f2217a9", + "id": "ce741e2c-48ce-4121-afd7-4f251e602ad3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102313,7 +102313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aa2d758-229c-4fd0-b4fa-fdb703f95cea", + "id": "f70cb562-9ba2-476e-afa5-381eef9631db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102364,7 +102364,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -102381,7 +102381,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": "fa3819dc-e98e-447e-89ad-26ade50ea0e6", + "id": "79f9d072-a6fd-498d-b5ff-7be77ad2b7f4", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -102420,7 +102420,7 @@ }, "response": [ { - "id": "86985215-fe6b-42fe-be5c-fc0f55c3f19e", + "id": "59431984-ab44-4882-8e42-7b8d6da2172c", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -102468,12 +102468,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 \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\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 \"CLIENT_CREDENTIALS\"\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\": \"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 \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\"\n ],\n \"accessType\": \"OFFLINE\",\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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ed5cce8-0fca-4887-99f0-da03a482c53b", + "id": "4eeb8ea3-b1ea-417a-923d-a4f2f4195453", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102521,12 +102521,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3eb26e62-ab97-4609-b740-3654bf65df73", + "id": "cfc1839f-7494-46dd-9c58-1c6842428391", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102579,7 +102579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "492615ec-0aec-49d1-bc0d-f277f7607dd7", + "id": "512f0cd7-d832-420d-8d19-9b6282c98199", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102627,12 +102627,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6a2d5a05-db46-4b20-8b3b-c5d530cce7af", + "id": "05d901f0-ee93-4639-b47d-8de0aec537e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102685,7 +102685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28afb9d7-88bc-4d51-83a0-0f6953ad60f0", + "id": "3524dd98-049e-4fde-83f1-bbfb515c3a01", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102733,7 +102733,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -102744,7 +102744,7 @@ } }, { - "id": "515f2480-30c2-4b27-b44d-a0908d5caa14", + "id": "b8b6d695-55ee-49f4-a489-fd9b9ddb3cc5", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -102775,7 +102775,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\": \"PUBLIC\",\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\": \"PUBLIC\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -102786,7 +102786,7 @@ }, "response": [ { - "id": "1c5842ea-f0e7-415f-ab62-9c69fb6ff607", + "id": "a3123c5f-6f28-48d5-80df-ce198080dc37", "name": "Request succeeded.", "originalRequest": { "url": { @@ -102820,7 +102820,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\": \"PUBLIC\",\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\": \"PUBLIC\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -102837,12 +102837,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 \"AUTHORIZATION_CODE\",\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": "77140750-0a37-472c-91da-bf999ae8437c", + "id": "23fc08d2-1747-4c90-a25d-fa768f6715bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102876,7 +102876,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\": \"PUBLIC\",\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\": \"PUBLIC\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -102893,12 +102893,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f16c5011-df95-41d1-90c3-d43cc5406389", + "id": "93922da3-5fa8-4926-992d-ecd1b5fa7c07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102932,7 +102932,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\": \"PUBLIC\",\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\": \"PUBLIC\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -102954,7 +102954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86305470-24cf-4fe9-9a0d-9a3dfeebaa44", + "id": "5820dbb9-862a-4491-a484-5bc7d6254d4f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102988,7 +102988,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\": \"PUBLIC\",\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\": \"PUBLIC\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -103005,12 +103005,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c41a143-57f7-4fb9-a4fb-7b1dee00ecc9", + "id": "be7066d9-edf8-4ed5-902d-a6f9ae5de713", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103044,7 +103044,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\": \"PUBLIC\",\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\": \"PUBLIC\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -103066,7 +103066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20cd79fd-744d-4f49-8893-09305cf9a4d3", + "id": "2f2f98f3-8a0c-4ba9-b063-efa5fe597717", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103100,7 +103100,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\": \"PUBLIC\",\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\": \"PUBLIC\",\n \"internal\": \"\",\n \"strongAuthSupported\": \"\",\n \"claimsSupported\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -103117,7 +103117,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -103128,7 +103128,7 @@ } }, { - "id": "321837d7-a901-434a-97c2-c9e6339022fa", + "id": "dd8698b9-f4a2-4a62-bdc0-5843585b1980", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -103165,7 +103165,7 @@ }, "response": [ { - "id": "5bd8c218-ac65-4ca2-9eb4-afc1c98914da", + "id": "5bcddf00-5aeb-4cf3-8fd2-bde06ac2a702", "name": "Request succeeded.", "originalRequest": { "url": { @@ -103204,12 +103204,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 \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\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 \"AUTHORIZATION_CODE\",\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 \"lastUsed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e904268c-0d15-4cbc-ae7c-4286a0540933", + "id": "9b21b109-6a74-4167-bfb0-d0824a5594d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103248,12 +103248,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4026fc91-582e-47f0-bfdb-b6b2580c37ea", + "id": "7ad08bda-f002-4793-844f-da1234fd6491", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103297,7 +103297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71b74c25-b47b-4fa8-ad51-85af9d590fd7", + "id": "cd6fbf1f-406b-444a-92a8-5de019b78b90", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103336,12 +103336,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6faf647-d539-4f5d-9da1-cc746a8f7dbe", + "id": "57ecf0ca-09bf-49b4-9147-25cf5b1a4100", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103380,12 +103380,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71fe78bc-e72c-46b8-8bfb-4dd5963088b4", + "id": "6485f5fe-4782-40c9-877f-e556925c5daf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103429,7 +103429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79ed1864-8d00-4975-a682-d74168f3eb9f", + "id": "89ee3e74-6bac-4788-8d39-9974aeffaefa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103468,7 +103468,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -103479,7 +103479,7 @@ } }, { - "id": "e752e4f7-0022-4625-bd3a-e82d6ff9771c", + "id": "f401b6e3-5551-4ca8-a6c8-9511c3817723", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -103516,7 +103516,7 @@ }, "response": [ { - "id": "b5e191bb-9b1d-4e6b-9bb2-b2f76d19b697", + "id": "774477c9-141e-44c8-8ba5-0cd8c4e9a92d", "name": "No content.", "originalRequest": { "url": { @@ -103550,7 +103550,7 @@ "_postman_previewlanguage": "text" }, { - "id": "cccec677-367c-4545-9be1-5ab5fc580e1e", + "id": "5a3ee27e-fc7a-40bd-8aa9-887c3a9b82ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103589,12 +103589,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5a12ffa-88b1-4fe5-a1a6-dd2f914f84e2", + "id": "92ef8a98-2367-4ee3-abcc-4adcf6b6cd54", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103638,7 +103638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "427b22b3-0024-48bc-b626-1b3622534e7d", + "id": "bc75d4e9-720b-4d89-a940-08af2764625d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103677,12 +103677,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ccabe86b-1698-4875-9b23-e69813bca22e", + "id": "277dadfd-8be2-4b93-9204-7a1a5180acdc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103721,12 +103721,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "791e520a-277f-4f5f-b84e-549c2ff7713c", + "id": "39ffbe88-2e1b-4d97-963a-38a3258612a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103770,7 +103770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a588c6b-42a2-4628-a9e8-3b26e3f6a4d5", + "id": "e1e10fbd-c7fa-4dd8-bcea-03e3881c0211", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103809,7 +103809,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -103820,7 +103820,7 @@ } }, { - "id": "063fac03-2423-4ac7-8f0e-6067eb13549b", + "id": "c44c1af2-bada-4710-a9b1-491534c62cc5", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -103859,7 +103859,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -103870,7 +103870,7 @@ }, "response": [ { - "id": "e022db26-d165-4f74-bed4-c169d9035713", + "id": "304eb208-5934-4a05-b9ba-304595516a76", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -103905,7 +103905,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -103922,12 +103922,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 \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\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 \"AUTHORIZATION_CODE\",\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 \"lastUsed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de19db0c-daa0-4834-b607-9cb26180f98b", + "id": "03d827e2-59d6-4253-8dbc-7592b742231e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103962,7 +103962,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -103979,12 +103979,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83848ee0-a052-4740-aa34-b58635b10a06", + "id": "c0e543ef-fadc-487d-9e6b-fffea7abd32b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104019,7 +104019,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104041,7 +104041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e0cf3ae-dbcc-4ac2-a83c-10676d823806", + "id": "755b2c30-3188-4f60-a1ae-a28ddd50aee6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104076,7 +104076,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104093,12 +104093,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e506de64-4997-4ab2-8548-b59a573b26de", + "id": "31115673-b44f-4946-87ba-c6e065509fa0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104133,7 +104133,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104150,12 +104150,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eca15b36-7fe2-4bcf-a203-f206d5929419", + "id": "4c4c573f-5217-4a4a-a29e-a43fd2488ae6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104190,7 +104190,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104212,7 +104212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8af377d2-5f48-430a-86fa-e629534b9058", + "id": "80b1c9e4-27fd-4564-96ad-39d9a1d0a3f6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104247,7 +104247,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104264,7 +104264,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -104281,7 +104281,7 @@ "description": "Operations for managing org configuration settings (eg. time zone)", "item": [ { - "id": "5c1f1ab3-bbf3-40b0-b754-9acdf10bb10a", + "id": "cad40e64-b4a5-4296-a717-bc2bcafc5308", "name": "Get Org configuration settings", "request": { "name": "Get Org configuration settings", @@ -104310,7 +104310,7 @@ }, "response": [ { - "id": "b652beff-b08d-4ad9-988d-690c9858128e", + "id": "fb9f4dbc-7369-4228-8b47-1ea589fe9d0e", "name": "Request succeeded.", "originalRequest": { "url": { @@ -104353,7 +104353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d648fad-1292-4141-8005-e6bf1bb2c4fb", + "id": "94c397c6-9bba-4315-a857-555eaf8bb3eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104391,12 +104391,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89afce3b-3f9f-416a-aeb6-cf2579c1a14f", + "id": "28bde9d2-3675-4c71-b75c-be3d74d0cf94", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104439,7 +104439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d328d2b6-eeaa-43a1-8e65-1f4c331f027d", + "id": "64fb6c92-7b5b-480e-b139-1d1dd484046e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104477,12 +104477,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6fda8ba2-77c7-48a4-b70e-3438bfbf4756", + "id": "3afd4901-ac96-47f9-bccf-78b7985a4b26", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104520,12 +104520,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3794d62-19bc-4f96-bfeb-0d9e993fbd65", + "id": "7743a66a-bc26-4b7a-a823-ba9598162abd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104568,7 +104568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2507377-e1a0-4616-b4fa-88eb61cc67d0", + "id": "ce60036d-61a1-460a-a189-e04b195a95c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104606,7 +104606,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -104617,7 +104617,7 @@ } }, { - "id": "034f0653-2d76-411b-b2e7-3473f9e11a45", + "id": "2d133d2c-ce8f-4a91-95ea-8966140d3f51", "name": "Patch an Org configuration property", "request": { "name": "Patch an Org configuration property", @@ -104648,7 +104648,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104659,7 +104659,7 @@ }, "response": [ { - "id": "8cddad9c-1cbc-4c73-aac5-f69560c8f107", + "id": "80749c49-805b-42de-bf6e-1289c8911c6f", "name": "The Org was successfully patched.", "originalRequest": { "url": { @@ -104693,7 +104693,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104715,7 +104715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8ecd9cd-cbb9-4275-bba1-3f76408bb3e1", + "id": "00e8a46e-ef14-4eee-9fbe-6bee1da3b031", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104749,7 +104749,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104766,12 +104766,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "32727553-a08b-4fba-ae3b-2b848635ee24", + "id": "0e126deb-4785-4fb0-99e6-73ac5fa4daa4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104805,7 +104805,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104827,7 +104827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c23bca2c-f9ae-466a-b96b-62360077adb8", + "id": "6f9f3dbe-1d2e-4aa9-b528-530bfc33edbf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104861,7 +104861,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104878,12 +104878,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97499762-ba31-4989-9215-3ab35fc34abb", + "id": "38c405a3-5043-4857-873d-8e536131355b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104917,7 +104917,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104934,12 +104934,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37a4a0d8-7b4c-4234-aea9-13027a33d44e", + "id": "6bd23b5b-ce9e-4f3a-b21d-e6603bcbf5a2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104973,7 +104973,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -104995,7 +104995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93cb6e3e-f838-46fe-960d-7821aba362cc", + "id": "6f78d822-6133-4351-8211-a4b31b479b12", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105029,7 +105029,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -105046,7 +105046,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -105057,7 +105057,7 @@ } }, { - "id": "0deb536b-ec82-4d3e-8db0-87ea88a6226e", + "id": "9de5b15a-f99f-429f-a99a-c44f9260ac88", "name": "Get list of time zones", "request": { "name": "Get list of time zones", @@ -105087,7 +105087,7 @@ }, "response": [ { - "id": "d1775236-c174-4b22-98c3-9c48a0a8d20b", + "id": "4db8cbc2-f87b-49b2-8006-180bbc76de78", "name": "Request successful", "originalRequest": { "url": { @@ -105131,7 +105131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43b69e90-1f31-4d34-842b-980c04141051", + "id": "72d3aa6d-a310-4930-b8dc-99117da41959", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105170,12 +105170,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7690a106-0e1a-47e3-afc3-e1d4c33c787f", + "id": "6f46c247-c638-4026-a76e-ab653f9e2441", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105219,7 +105219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "362921c7-06e6-451b-a44a-8cf024b92191", + "id": "e7a584e6-f77e-4867-a432-bf0585c0314d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105258,12 +105258,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43985413-6548-445c-93a7-163d967ccbe3", + "id": "36724807-875e-44e8-8135-57946a0c3b82", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105307,7 +105307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62e7485b-b969-4fc0-823f-24eaeb62b62e", + "id": "4db9ebef-70c0-4479-b915-91d4d3270b19", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105346,7 +105346,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -105363,7 +105363,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": "4bca32b1-1fd0-4bf6-846e-7682c12b2b85", + "id": "ed5daca5-c4f0-41f9-ad34-52f69dc23dd2", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -105392,7 +105392,7 @@ }, "response": [ { - "id": "f75a4016-e552-4392-a67c-49c20087bbb8", + "id": "661005b2-c179-4fb7-a0a4-9b9342a2c42e", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -105435,7 +105435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2759d3b1-76b5-4eeb-9554-63984d94ec49", + "id": "95fc7767-7647-4e5d-9032-1b1c3f8d32a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105473,12 +105473,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "213a88a1-c299-496d-8218-fe9168f01130", + "id": "1eaa80ab-d3b9-4cbc-b509-f9b150aaff42", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105521,7 +105521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80a548b0-c220-40ef-ae8a-70968ac67fdb", + "id": "19ef1b8b-103d-4c83-9be6-b48a0b7e9121", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105559,12 +105559,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b780fa2a-4668-493e-976d-c15fd58ca908", + "id": "defe7234-374e-4757-a1f0-a63cbc6d1653", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105607,7 +105607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96b18cbb-9189-4ccc-b655-032a589b5f18", + "id": "939d4ebe-2377-49c6-8bab-9c73237bdfc7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105645,7 +105645,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -105656,7 +105656,7 @@ } }, { - "id": "28239f43-50ee-4b80-9134-d18790cc6ed9", + "id": "73c4424d-d85b-443d-ab90-d822aa3e4857", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -105698,7 +105698,7 @@ }, "response": [ { - "id": "3db9d564-73b2-4102-b660-ca542cbb24cc", + "id": "8e2a0715-cfe0-402a-bfd0-b8ab8f7c1969", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -105754,7 +105754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1297175-e4f4-471f-89a9-a0b701cad2db", + "id": "99d1e23d-e32e-4d97-ac62-a206f8445f36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105805,12 +105805,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cab54107-8bec-4fcc-9c7c-133ab1fc7dff", + "id": "fc3c5a04-f43d-4af3-97b1-683a986201eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105866,7 +105866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6991df4-5f2f-4afb-bc54-fa038b93c9bb", + "id": "70efc2cf-2163-498c-92a4-90ce6fbe3cab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105917,12 +105917,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37b2f132-9edd-4c46-9672-d0773717255d", + "id": "e0b57dff-3eb3-4721-b49b-0d4ac98170db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105978,7 +105978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceacda4e-1491-4fc6-afd0-0055c3b23940", + "id": "a6c10ac1-d74e-4fe8-9656-f7508b891ded", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106029,7 +106029,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -106040,7 +106040,7 @@ } }, { - "id": "8ae033c4-9712-4555-bc08-04c37cd6c76a", + "id": "362e779e-4e1b-45a0-9f41-63c6415b8eae", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -106082,7 +106082,7 @@ }, "response": [ { - "id": "be354db4-79bc-4185-be14-fa16d4a72fb0", + "id": "affa9b8b-76c3-4bac-b6dc-c69ed11f204a", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -106138,7 +106138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0255249-6b53-4793-b5a3-66f5c708697f", + "id": "b4d9779b-6f55-4c51-82ab-874ca2233dde", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106189,12 +106189,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae532e78-4145-4e42-8983-987cb37d104b", + "id": "fb480d9c-5bf9-48d0-9796-198e4e6bf3cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106250,7 +106250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "456234f2-a127-43dd-8613-b30d8c94353e", + "id": "85687436-b82b-455b-b778-49f293e3eb01", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106301,12 +106301,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a67813d0-347d-4e5d-b31a-0ffd8ab730be", + "id": "04ff9aaf-ea84-4c3a-990b-6e70cf9fa3be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106362,7 +106362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2b2ee94-1410-4f90-80e9-da6b4189c13a", + "id": "522e4975-8b76-4f2b-8ccb-184c6601242a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106413,7 +106413,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -106430,7 +106430,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": "cac0c157-d028-4f88-94a2-75d628a05f0e", + "id": "b9bba85b-241f-47ea-ae5f-3d163ce50473", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -106459,7 +106459,7 @@ }, "response": [ { - "id": "2eefbc8d-c4bb-4044-ad11-5c8b13a296e4", + "id": "05f4d07e-4bd3-49f9-9c9b-b5b153045723", "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": { @@ -106502,7 +106502,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b04928d4-2683-47bc-8737-9ced9e5292db", + "id": "2e0e34da-6cfb-4d64-aca3-d8e2c9236f39", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106540,12 +106540,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ce62534f-681f-49d4-845c-5197c378ea4b", + "id": "c8079fda-9e91-4557-8468-0ab204ae10de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106588,7 +106588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68ad83a0-6558-4b9e-bc88-b85418f962ff", + "id": "9491d39c-7498-4e96-b515-8403c43f959f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106626,12 +106626,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd0662cd-9226-46e9-bd51-b6e85a8f91e5", + "id": "ca9531cf-649f-420e-8a8d-43a39649615b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106669,12 +106669,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57104c4a-b7c2-4f33-86af-de513da1915a", + "id": "51bde079-ebb8-439a-9932-135cf58b8315", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106717,7 +106717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4d3cd5f-9f7c-41e1-b26a-6f2836b01517", + "id": "d363c565-112f-46ab-af4e-e1ac4e8a182b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106755,7 +106755,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -106766,7 +106766,7 @@ } }, { - "id": "20344d99-e91d-445a-a4d0-eda81c604f97", + "id": "d0404322-fd11-42c6-98ab-469aa562b2a8", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -106812,7 +106812,7 @@ }, "response": [ { - "id": "cb90f884-9e0e-42ce-8ab9-d42140fa21be", + "id": "0ea1a7b2-1814-4133-aaf6-d7c1b42d229e", "name": "Successfully updated.", "originalRequest": { "url": { @@ -106862,7 +106862,7 @@ "_postman_previewlanguage": "text" }, { - "id": "decbd4ef-431c-4ed5-adab-3e57eba2b249", + "id": "99939c75-7098-46f8-8aa6-71a67bda45f3", "name": "Created.", "originalRequest": { "url": { @@ -106912,7 +106912,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4584933d-69fd-4a6c-a955-5c7e5edd7c68", + "id": "ce32b7f6-a8ff-4c2a-bee9-0a045241f004", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106967,12 +106967,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c8271d4e-cb03-4c2f-959d-852fa60817ea", + "id": "463e129f-af8c-4702-b55d-1adb978fdf99", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107032,7 +107032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "810166c8-72b5-4efa-8ef6-a3c6f3cc972a", + "id": "31519b73-ea07-448a-890f-093d93c0f164", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107087,12 +107087,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e671d015-3631-4e3d-9d78-4dcb0d4a68b7", + "id": "4224c205-ad69-47ba-a313-81cfce86aa98", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107147,12 +107147,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48ae5357-49e6-4136-a34c-8496de9f08a4", + "id": "4e090c7b-1ceb-433d-a271-5b6f781a4344", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107212,7 +107212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27585aa9-67e1-4260-9a0f-108a9bb2db63", + "id": "cfe0cfe6-52a2-4dc3-8262-abb384ecd029", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107267,7 +107267,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -107284,7 +107284,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": "8ca7c597-8836-49b9-a836-ee42ed29a95e", + "id": "c0479ff9-ee72-424d-a3dc-24e85a349a30", "name": "Generate a digit token", "request": { "name": "Generate a digit token", @@ -107327,7 +107327,7 @@ }, "response": [ { - "id": "f6642238-8f18-41e3-bb21-560cd3419ba3", + "id": "f6fe4ec4-1e62-4999-b5e4-d380ab069489", "name": "The digit token for password management.", "originalRequest": { "url": { @@ -107384,7 +107384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c0e9d76-c664-460f-b7c1-b3c70b08150b", + "id": "f41abe2c-0ebf-4a57-bf4e-86a850221fbe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107436,12 +107436,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98aaf764-d2f5-4e31-b95b-c0c57d689fea", + "id": "19c4a514-59ee-4280-a8fd-044a551f09d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107493,12 +107493,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe4a647d-bac1-4ea5-9872-00d4e3eebaef", + "id": "cf51e14f-2117-4ae3-8946-bd108ac23058", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107550,7 +107550,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -107561,7 +107561,7 @@ } }, { - "id": "e3a828a0-e8c4-4c84-8adf-ddbd65ca1393", + "id": "9c8a15bd-f3f7-4bfa-95af-ecc359f8002e", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -107603,7 +107603,7 @@ }, "response": [ { - "id": "bdd1c1d7-7f7e-40e8-ae53-f6b5ff071491", + "id": "d9b3409f-01fd-44be-abe6-75f8e4a9a83f", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -107659,7 +107659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e282596-cb79-454f-9bd7-089983398fd9", + "id": "f3a8285d-3c7a-4c08-8694-b8f92df5581c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107710,12 +107710,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a06f1979-1fbd-4ef7-a442-2b2be1396d4f", + "id": "6735650d-f22e-4b4b-8479-dc618597eb47", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107771,7 +107771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fc012cc-f746-451c-b6c1-66748033b04e", + "id": "e317fe1f-f052-40df-bde2-504f8c40d2b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107822,12 +107822,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "60fb09ab-c521-407c-ad3f-2ebd154d05d3", + "id": "dedd58f6-a907-495b-a50a-268d7864e9e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107883,7 +107883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72781235-4fe3-4922-ae30-869bc522c631", + "id": "74b3344c-caff-41c1-ac6a-188231c7461b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107934,7 +107934,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -107945,7 +107945,7 @@ } }, { - "id": "44035b80-0da0-46e6-99c5-8fbbc68f2e1a", + "id": "feb27428-3b68-410f-8fd8-8611f5551420", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -107987,7 +107987,7 @@ }, "response": [ { - "id": "be35ce1a-fda2-4735-95a2-ca6767eb97dd", + "id": "90e73182-5e22-43e9-adc5-262db95c01e3", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -108038,12 +108038,12 @@ "value": "application/json" } ], - "body": "{\n \"requestId\": \"\",\n \"state\": \"FINISHED\"\n}", + "body": "{\n \"requestId\": \"\",\n \"state\": \"FAILED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71128cb4-d48a-46f0-9bbf-2eeefcafe3ce", + "id": "41fa2b7a-1d30-42a3-a5e0-1fedff329f28", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108094,12 +108094,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b696791-a3a6-4bab-84f7-431f270739d5", + "id": "ad759821-950c-41aa-b008-828116f79da4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108155,7 +108155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c662de10-9421-4864-b75c-104cd6a1ec19", + "id": "3ffa79dd-71ec-4b77-a31a-7a4c4e238a71", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108206,12 +108206,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44c12d7f-e59c-4d5b-90d0-8114ec311488", + "id": "26fae23d-f252-4731-81b2-9d348065d75a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108267,7 +108267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2fe7fed-08fd-480c-a558-c8296cf6e072", + "id": "5108109a-57db-48c1-ae40-4bbc665519e4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108318,7 +108318,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -108329,7 +108329,7 @@ } }, { - "id": "06d70c83-6d03-48d9-9069-fe750bab9a9d", + "id": "ad8a8c7d-964d-4ce8-9523-7f1d95cca2db", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -108366,7 +108366,7 @@ }, "response": [ { - "id": "498c49e6-aeaf-43c0-bb1c-266861be7a44", + "id": "b297b756-5353-4b91-b53f-04a50cd8dc48", "name": "Status of the password change request", "originalRequest": { "url": { @@ -108410,7 +108410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d3f8706-8ce4-4d8b-9995-e73af1575c89", + "id": "ee21f53c-3093-4d12-82ca-ca4426f29a89", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108449,12 +108449,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ec85aa0-aeb7-4d97-9e5c-0e2fba275cb1", + "id": "8ed9e359-6b4e-4891-b69b-aff1869b14e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108498,7 +108498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97cd0ea0-3b65-4341-84fb-10d1d6f3af15", + "id": "491c49da-23bb-48c2-b2a3-22781aef698d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108537,12 +108537,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "58dae9ee-4768-442c-8cfd-8dc1e9f5e002", + "id": "f1a5170e-07fe-4ac4-966d-7745060c57c5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -108581,12 +108581,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "14859efb-f265-49e3-a676-eaf153201759", + "id": "16cfb69d-ac0b-480f-9e9c-05e3056108d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108625,7 +108625,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -108642,7 +108642,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": "2f71e2a1-6fc0-4821-bbff-07c1f5886d12", + "id": "eeb52858-d24c-44e4-906e-8664d38e74d0", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -108699,7 +108699,7 @@ }, "response": [ { - "id": "9d0202c5-4219-41ca-8a51-6c1afea1543b", + "id": "ff51fa35-d8c3-4b4d-b4bf-611df874a6b5", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -108770,7 +108770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4ca99a5-af53-43f4-a186-32e0d03d9545", + "id": "59f74a08-40fb-4640-851b-f0063bec3a83", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108836,12 +108836,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b98018d6-f3a0-4a03-98c1-fe8e80004872", + "id": "ca8a0297-b8d1-45e3-8679-2ced4e36889e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108912,7 +108912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f6d2dda-9388-4040-ae26-1fa117e4c4d4", + "id": "0e77c3d8-7282-44f4-a191-b8519fa12f11", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108978,12 +108978,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b094d66-81b1-486b-83ac-a18ff9d13408", + "id": "9864c861-7701-433c-b82c-d2f97e28f13d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109054,7 +109054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2203720d-6fbd-4a48-861f-4f9d91007b5f", + "id": "374111f7-de87-4cbf-9a89-308102fbd325", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109120,7 +109120,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -109131,7 +109131,7 @@ } }, { - "id": "3ef0a4c3-fb5c-4ef2-a58e-2b4626d12c60", + "id": "a103088d-6419-4cf4-add2-a232e41bd1fb", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -109173,7 +109173,7 @@ }, "response": [ { - "id": "972d7593-d12f-420b-93b4-01c5fac04bca", + "id": "9e3195ed-b14e-4936-8c50-0eb4bbdace34", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -109229,7 +109229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f99b3f0-130a-48b9-ba4b-6dd2f87fd175", + "id": "1b77082d-df82-4272-a5a6-a82917a546c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109280,12 +109280,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b8648f0-8925-4df8-bec7-3c6d98b177ad", + "id": "63b781a2-0536-446a-94f2-a45094094628", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109341,7 +109341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0be491bf-eaea-43e0-b26c-8847b75e599c", + "id": "767edcc9-5bb6-4a1c-8fb5-ff5571fda2dd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109392,12 +109392,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c371620-58b9-4e70-93e7-90bbfab5e8f3", + "id": "bd93d872-30d5-45dc-8791-6e32d5a228b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109453,7 +109453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a5ce4df-cd73-4fcc-a68c-ab0bf8797dca", + "id": "5d86224e-bfb0-4be6-ab98-922ec98e5831", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109504,7 +109504,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -109515,7 +109515,7 @@ } }, { - "id": "0547544e-393f-4ab6-8d51-8ba44964c6a4", + "id": "144b5f0a-9e8b-44da-878b-b42fab2eca3f", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -109552,7 +109552,7 @@ }, "response": [ { - "id": "80fb0ceb-7c91-465d-90ef-bcc29631fc3f", + "id": "a5904184-e889-4d2e-8fee-737e62c17e34", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -109596,7 +109596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3395e74-7520-41b1-ac36-3f0e6f9aa3a0", + "id": "70df3663-ae16-47be-b181-76c8bbc3a97f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109635,12 +109635,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0551775b-ae86-439b-8f1d-cf779faa92d0", + "id": "dfc81654-ffee-4625-a5c2-b6c08fe62ba4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109684,7 +109684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df712162-92a7-4a6e-b244-e9c19068ec1e", + "id": "d2d4c323-b5b3-4a51-aeb7-1a2531dc72ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109723,12 +109723,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3f898a69-fb01-4a09-b5e4-19285167e3f6", + "id": "ba1c9c2c-3fc6-4028-8f51-250635ef77b7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -109767,12 +109767,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7ae2c175-5475-4d68-800f-05419dc75f4d", + "id": "0a3f18dd-2097-4bfb-8b2f-7beed9f18366", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109816,7 +109816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c87a666-5fda-453a-9a3d-18ef29eb470a", + "id": "6b1b70e9-2c26-4d7e-87e3-a019dd7678ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109855,7 +109855,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -109866,7 +109866,7 @@ } }, { - "id": "d094f56b-34ba-4783-b555-f01d6c7d54b3", + "id": "2189ec10-a7f9-4a54-a159-32fc0b694dc2", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -109916,7 +109916,7 @@ }, "response": [ { - "id": "5ac58ec5-1a7e-481d-af80-848e0d47de88", + "id": "42de0b51-a413-45bc-bdf6-27ca855e4ede", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -109973,7 +109973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74d47143-93c0-4d4c-aefd-9af3e7d0ab26", + "id": "cb37b825-e3cf-4c81-99d4-ed59e020d124", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110025,12 +110025,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ffdacd6-b113-4bfc-b2af-33c09cb8fcd7", + "id": "58c12435-8bf5-4141-a769-1524e8451d4a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110087,7 +110087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "249fefe8-477b-4cb3-9587-2522253c345b", + "id": "eb565f7d-9fb5-4bb5-b9d3-2f6fc8e75387", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110139,12 +110139,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb7986bf-43a0-4b9e-8ee7-5fd7fecc7bd2", + "id": "45f44149-184d-4923-8a20-8014078ed8c6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110196,12 +110196,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae80dae2-3331-4809-99f7-8fb7cc56ac72", + "id": "a01edc39-4e3c-4622-8550-b6a23a9291bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110258,7 +110258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bfcd78d-5020-4e4f-a206-1c08764240ea", + "id": "5510d1c3-8206-4ba3-a6aa-f699e574203a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110310,7 +110310,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -110321,7 +110321,7 @@ } }, { - "id": "29aaf840-f6cc-460c-99b0-069b4a7bb62e", + "id": "e31ea0d4-ff9f-4aca-bda3-7d8a0941ec7b", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -110358,7 +110358,7 @@ }, "response": [ { - "id": "237a49b2-8ce5-40f8-930a-8eb84ae7dba8", + "id": "88731f16-28f8-460b-8dbf-a6646e5606b6", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -110392,7 +110392,7 @@ "_postman_previewlanguage": "text" }, { - "id": "91d83e56-a81d-4d5e-9362-a4be291f7585", + "id": "7966dddf-dc7f-4f62-9151-cc1902b9bfe2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110431,12 +110431,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3373966-9464-44f7-871c-b1aa44fa0075", + "id": "15a04199-098b-4047-ba4a-09500082f46a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110480,7 +110480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d902644-148d-4243-81a1-fc5c0f05f9a1", + "id": "e113b2b3-8778-4067-a85f-573443da687e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110519,12 +110519,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29b5dfb6-3423-42b5-bd0a-2599bc2f66b2", + "id": "97b14e9c-3432-48c7-a49e-32bebe621261", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110568,7 +110568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "154b5549-b92d-471b-98af-50839357b059", + "id": "664b4bba-3837-4784-a069-069f99ba9513", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110607,7 +110607,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -110624,7 +110624,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": "0d179482-4154-49ed-9f38-e7fc320d9427", + "id": "94d2dfe4-2277-4764-b2b0-d5d10f8eba2f", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -110672,7 +110672,7 @@ }, "response": [ { - "id": "eba58cf7-4416-48f9-816a-bf634a71937a", + "id": "4c1d7bdb-acfe-4821-bd51-f8555406b21d", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -110729,12 +110729,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\": \"ACCESS_REQUEST_APPROVAL\",\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\": \"ACCOUNT_ACTIVITY\",\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\": \"SOURCE\",\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\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\",\n \"lastUsed\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "129de1c5-7d13-4948-a78d-fdf0decc474f", + "id": "98340b59-3132-4e89-9dbc-9d73a916efe3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110791,12 +110791,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "06c4a3f3-13e0-441a-9724-a024d90f4db9", + "id": "11b6f42b-8904-4cc4-8632-e6acd55318d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110858,7 +110858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c95f97f1-4122-481d-9fb9-32441831b653", + "id": "57ebfbf5-35a7-4464-8ebb-079f198eb94e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110915,12 +110915,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f3f5d01-6be0-4f5e-b3e7-4bcdf4d0b214", + "id": "39e6f528-3c84-4048-9eff-a2526ee09e8e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110982,7 +110982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e95ad8d-bd67-4432-b9d0-0fb987c056ee", + "id": "9489a417-d064-4567-8898-99a0cb773ae9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111039,7 +111039,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -111050,7 +111050,7 @@ } }, { - "id": "62b592f9-b01b-49c0-8df8-df1e18057c5a", + "id": "c5588d78-dab5-44a6-aa1b-480dd1c3f1d4", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -111092,7 +111092,7 @@ }, "response": [ { - "id": "b3778933-df25-45be-9536-6ccfb27b09fe", + "id": "30887019-8e52-41a2-8913-9bbbc38f6b10", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -111143,12 +111143,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\": \"SOD_POLICY\",\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\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dbe7b2e4-9b98-47f5-86f5-4e4959c3a14d", + "id": "490bcf98-4f8d-4ea6-a202-46fc644e76ae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111199,12 +111199,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1967c528-1081-4348-a2e0-df6794c09194", + "id": "d2ea853f-ae4a-4efe-92f8-80f98926f0d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111260,7 +111260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dc5bc09-29ca-4faa-88f4-1942374fbd2d", + "id": "862f7ad2-f132-4f83-8a28-bdd7d2bd1e5c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111311,12 +111311,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9fb4cb75-dcdb-4acd-ac75-32f1aeb7addc", + "id": "66ec2d61-7515-4c11-881e-80d2398574aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111372,7 +111372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "184fded4-cb0b-425f-b379-948a62b3319a", + "id": "fa10b8ee-2939-47b6-bbd7-9e611193e958", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111423,7 +111423,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -111434,7 +111434,7 @@ } }, { - "id": "5f1fdaaf-5288-40c8-aa7e-f8406c1e5a99", + "id": "1d7fcbfd-c34d-4e30-922f-85945968c0cf", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -111473,7 +111473,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -111484,7 +111484,7 @@ }, "response": [ { - "id": "d18f4023-6611-4bda-9602-61de7c60fb08", + "id": "e0aec553-3857-4820-9b4b-9360e666093b", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -111519,7 +111519,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -111536,12 +111536,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"scope\": [\n \"sp:scopes:all\",\n \"sp:scopes:all\"\n ],\n \"owner\": {\n \"type\": \"CLUSTER\",\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\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"created\": \"\",\n \"lastUsed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0950a10f-3c21-4449-beee-425ba2a31ad3", + "id": "f7fca080-ee7b-4028-9cc9-2cd9b97a1d44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111576,7 +111576,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -111593,12 +111593,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39988998-e125-4d58-b42c-c9061915ed12", + "id": "53eba95f-c618-4ddd-8c39-4612051277ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111633,7 +111633,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -111655,7 +111655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be8eee1f-4fba-4546-bf99-7841c66edc9c", + "id": "0ba3b84f-3ce1-4e3a-a51f-0902f1bb508e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111690,7 +111690,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -111707,12 +111707,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "779546d0-3ad4-4ff0-aa80-ff246ff9193a", + "id": "4f89cf10-c8ba-4c83-9a99-a9ac43d8aa86", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -111747,7 +111747,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -111764,12 +111764,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1afec136-e29c-40b7-9191-8e09648ff5b3", + "id": "2773fc7e-00a2-47a5-bb45-73e7fa370250", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111804,7 +111804,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -111826,7 +111826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4db1418e-d61c-4595-b939-9d2022784434", + "id": "ae763104-cf9f-44da-bcb9-aea98f17f86c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111861,7 +111861,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -111878,7 +111878,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -111889,7 +111889,7 @@ } }, { - "id": "2b1ef68c-f3ce-40b3-8ebf-2fd6fe5b83bb", + "id": "59b48710-8873-4f2b-98b0-7f79c0ebdaeb", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -111926,7 +111926,7 @@ }, "response": [ { - "id": "677bbb5e-29e4-4703-ba6e-0672e8dad87c", + "id": "a3d1a624-f767-46ae-aa73-24b10ced49bc", "name": "No content.", "originalRequest": { "url": { @@ -111960,7 +111960,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a4f54a61-8a62-43c0-ac6a-7fc75536964e", + "id": "ebaed426-dbd4-47ee-9633-1cfb327ee5c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111999,12 +111999,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7c5981c7-5ed5-40a2-9f1a-4486f67135a0", + "id": "11b10c78-952c-4367-b112-aa69314e7a92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112048,7 +112048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "174cedfc-b0d9-42e4-903e-dda36012d906", + "id": "8a4c9f76-f25c-4570-b43b-40afafea1b18", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112087,12 +112087,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7ba7106b-b932-4d8c-aaf2-d3c6a695337f", + "id": "5cd44322-fd98-4c84-9a4a-9cb0555ef01f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -112131,12 +112131,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "efad280b-ad32-41e5-a291-ffbfd7769cb4", + "id": "bf9e6f2c-a16f-4c1d-a2f2-10610d36b663", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112180,7 +112180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17aafbd3-e2c2-432d-a9a0-1e437d0d1850", + "id": "9a00abe5-3d06-49c5-a2d1-b75e789a613e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112219,7 +112219,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -112236,7 +112236,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": "fa9cec32-b681-4fd3-8ad1-9bd4f98a8c13", + "id": "68ed41de-7680-487f-9969-4ec8cd9755be", "name": "Get Public Identity Config", "request": { "name": "Get Public Identity Config", @@ -112265,7 +112265,7 @@ }, "response": [ { - "id": "4f4f1e85-3f62-4f91-8034-e7150654e947", + "id": "8e58010f-95fd-4350-8ae8-6f6068e5eff3", "name": "Request succeeded.", "originalRequest": { "url": { @@ -112303,12 +112303,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"TAG_CATEGORY\",\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\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "432cf1c5-ee33-4f7c-a26c-d3f72db20436", + "id": "586f42a3-9f3a-43de-b2ca-b3a7d520b450", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112346,12 +112346,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b75264de-ed20-488e-97e3-47b2e65e2ea5", + "id": "67b9f961-b6c4-40eb-b145-bd71a36220e2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112394,7 +112394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2b99131-9465-4bba-87f8-4a8492f349f6", + "id": "bb73ae95-7a2d-4256-a497-f7e023e3616e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112432,12 +112432,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "65505ed8-b21e-452d-9b9c-5ac192f1e89a", + "id": "2aa8e0c3-36a4-43cf-9e13-fe0fffa99870", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112480,7 +112480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31ebd26e-23bd-4cd4-84b1-024baacae894", + "id": "0d320929-037c-4b1d-9154-94043b07e4f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112518,7 +112518,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -112529,7 +112529,7 @@ } }, { - "id": "467c8d50-a6c2-47a8-b0db-e59479196b46", + "id": "5a3498c6-94be-4e4c-b008-d12735bcfcaf", "name": "Update Public Identity Config", "request": { "name": "Update Public Identity Config", @@ -112560,7 +112560,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\": \"TAG_CATEGORY\",\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\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112571,7 +112571,7 @@ }, "response": [ { - "id": "89e4db91-9510-454e-b840-cd9b924fbf2e", + "id": "fb87982a-4ebd-4dce-b788-9db231e3a47f", "name": "Request succeeded.", "originalRequest": { "url": { @@ -112605,7 +112605,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\": \"TAG_CATEGORY\",\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\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112622,12 +112622,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": [\n {\n \"key\": \"\",\n \"name\": \"\"\n },\n {\n \"key\": \"\",\n \"name\": \"\"\n }\n ],\n \"modifiedBy\": {\n \"type\": \"TAG_CATEGORY\",\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\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ba89e8e1-7862-4f30-877c-d422ee71c0aa", + "id": "f48b35ad-10e8-4bd2-b86c-b310d54246ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112661,7 +112661,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\": \"TAG_CATEGORY\",\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\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112678,12 +112678,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3db9588-ff16-4190-9d90-f3aa582a4a53", + "id": "38a39987-ba58-491d-b7f4-4fbf057a75d0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112717,7 +112717,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\": \"TAG_CATEGORY\",\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\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112739,7 +112739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95bab76e-698b-41e0-ba27-8533888525b3", + "id": "b5980ec2-e20a-4aff-b23c-54c0d03cd2fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112773,7 +112773,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\": \"TAG_CATEGORY\",\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\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112790,12 +112790,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "adb2de01-cdb7-479f-a04c-78900e29dfdd", + "id": "7aeaf782-827e-45d6-b96d-b5a8723cdcb8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112829,7 +112829,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\": \"TAG_CATEGORY\",\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\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112851,7 +112851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0d9397e-5019-41dc-bfb2-7106b309b78f", + "id": "a5e1489a-a7cb-4e6a-9503-564dfbed2520", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112885,7 +112885,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\": \"TAG_CATEGORY\",\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\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"modified\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112902,7 +112902,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -112919,7 +112919,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": "5c749589-6714-40bf-8902-32ff298a2aa9", + "id": "2457cc28-ec50-483f-99ad-41c1b4a1e21e", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -112951,7 +112951,7 @@ "type": "text/plain" }, "key": "types", - "value": "ROLE,ROLE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -112969,7 +112969,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,ASSIGNED" + "value": "AVAILABLE,AVAILABLE" }, { "disabled": true, @@ -113030,7 +113030,7 @@ }, "response": [ { - "id": "f9a40484-5f08-4941-81fb-3e0e917cadc2", + "id": "72d06da6-d410-4363-b824-c162bda3137c", "name": "List of requestable objects", "originalRequest": { "url": { @@ -113057,7 +113057,7 @@ "type": "text/plain" }, "key": "types", - "value": "ROLE,ROLE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -113075,7 +113075,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,ASSIGNED" + "value": "AVAILABLE,AVAILABLE" }, { "disabled": true, @@ -113150,12 +113150,12 @@ "value": "application/json" } ], - "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\": \"PENDING\",\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\": \"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\": \"ROLE\",\n \"requestStatus\": \"AVAILABLE\",\n \"identityRequestId\": \"\",\n \"ownerRef\": {\n \"type\": \"\",\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"requestCommentsRequired\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c76df89-c2b5-4bcc-b08f-d95a4e14d02c", + "id": "4436f775-0f03-483c-89b9-d7fed9547563", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113182,7 +113182,7 @@ "type": "text/plain" }, "key": "types", - "value": "ROLE,ROLE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -113200,7 +113200,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,ASSIGNED" + "value": "AVAILABLE,AVAILABLE" }, { "disabled": true, @@ -113275,12 +113275,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44152e3e-d392-4b1f-a301-ec0671330389", + "id": "dedcbfd8-1810-4271-b8cd-b2cf0b87cb51", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113307,7 +113307,7 @@ "type": "text/plain" }, "key": "types", - "value": "ROLE,ROLE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -113325,7 +113325,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,ASSIGNED" + "value": "AVAILABLE,AVAILABLE" }, { "disabled": true, @@ -113405,7 +113405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84705252-ff0b-40b3-a1be-9e944f80d918", + "id": "af854e98-9ca3-491d-a979-d21f3de33da5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113432,7 +113432,7 @@ "type": "text/plain" }, "key": "types", - "value": "ROLE,ROLE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -113450,7 +113450,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,ASSIGNED" + "value": "AVAILABLE,AVAILABLE" }, { "disabled": true, @@ -113525,12 +113525,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "19120487-2553-4501-97b6-cecd1bb2a20e", + "id": "cd4c55c2-41ac-48c7-b00e-76e829edc644", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113557,7 +113557,7 @@ "type": "text/plain" }, "key": "types", - "value": "ROLE,ROLE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -113575,7 +113575,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,ASSIGNED" + "value": "AVAILABLE,AVAILABLE" }, { "disabled": true, @@ -113655,7 +113655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ded22d3c-6ed6-4eef-98e2-38d77d24b53e", + "id": "19259eee-2f98-4844-8fe6-d9991e13923d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113682,7 +113682,7 @@ "type": "text/plain" }, "key": "types", - "value": "ROLE,ROLE" + "value": "ROLE,ACCESS_PROFILE" }, { "disabled": true, @@ -113700,7 +113700,7 @@ "type": "text/plain" }, "key": "statuses", - "value": "AVAILABLE,ASSIGNED" + "value": "AVAILABLE,AVAILABLE" }, { "disabled": true, @@ -113775,7 +113775,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -113792,7 +113792,7 @@ "description": "", "item": [ { - "id": "797a73f4-e616-4c2b-8944-fd1d2e7da079", + "id": "04c462c3-c1c5-4b6f-8a81-d51fbd9c3754", "name": "A request to generate insights for roles", "request": { "name": "A request to generate insights for roles", @@ -113822,7 +113822,7 @@ }, "response": [ { - "id": "526e3d47-bb24-4b11-befb-2703e7374706", + "id": "86896c0b-5e64-4bbc-927f-dfe91608a70e", "name": "Submitted a role insights generation request", "originalRequest": { "url": { @@ -113861,12 +113861,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"createdDate\": \"\",\n \"lastGenerated\": \"\",\n \"numberOfUpdates\": \"\",\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"status\": \"CREATED\"\n}", + "body": "{\n \"id\": \"\",\n \"createdDate\": \"\",\n \"lastGenerated\": \"\",\n \"numberOfUpdates\": \"\",\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"status\": \"IN PROGRESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b6c9821-51cf-45f8-a2ee-426cb38ffe95", + "id": "e8205172-9d04-47bf-a450-a012dc6fc5d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113905,12 +113905,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe328eec-05a0-4a9a-ae6b-44202d7b3bc8", + "id": "2a7071bd-a947-41e3-b894-5c3fde401ac4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113954,7 +113954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f260219-12f3-4035-9e27-de0ef090002a", + "id": "91c6c849-c1c4-48ab-b531-4ae4e8fc3100", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113993,12 +113993,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12369bdd-6243-4387-b373-82418059e03d", + "id": "cccfca6b-4fd2-48a8-b800-13beda2270d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114037,7 +114037,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -114048,7 +114048,7 @@ } }, { - "id": "69a1ddab-c623-4d99-9929-517e9eb4094b", + "id": "56476739-2fc6-42e5-9b2e-2bcf8ee3872d", "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.", @@ -114086,7 +114086,7 @@ }, "response": [ { - "id": "df2585ba-fa28-48f6-95ec-babe56d511e9", + "id": "b6e9da95-feed-46ff-8e8b-5162d9cec5dc", "name": "Succeeded. Returns details of an earlier role insights request.", "originalRequest": { "url": { @@ -114126,12 +114126,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"createdDate\": \"\",\n \"lastGenerated\": \"\",\n \"numberOfUpdates\": \"\",\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"status\": \"CREATED\"\n}", + "body": "{\n \"id\": \"\",\n \"createdDate\": \"\",\n \"lastGenerated\": \"\",\n \"numberOfUpdates\": \"\",\n \"roleIds\": [\n \"\",\n \"\"\n ],\n \"status\": \"IN PROGRESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6cf62ef-54a7-472e-bb7e-228f0f833186", + "id": "cf6e36c0-1bd4-465b-a2bc-b2426bb4a04d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114171,12 +114171,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01b5517e-3a1f-4600-ab8a-1051787aea0e", + "id": "65f2b5f0-70dd-4c72-a77b-0f4bbeb3cb3c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114221,7 +114221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70449be9-ce1c-4a87-b418-ce09a9e36986", + "id": "ee2e2ea2-986c-4f3b-ab37-ce3a9c0f5f91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114261,12 +114261,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab133cef-8b8a-4e9c-b65a-bb982df70b70", + "id": "8b743c6c-9850-4936-a5ae-6c2df6c2ed96", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114306,7 +114306,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -114317,7 +114317,7 @@ } }, { - "id": "e380166f-7c00-43aa-b840-d2bcb758ff84", + "id": "2db570e3-6d31-4e7e-807a-d1edc68c3c32", "name": "Get role insights summary information", "request": { "name": "Get role insights summary information", @@ -114347,7 +114347,7 @@ }, "response": [ { - "id": "d962e29b-af97-41fc-8bbd-e68bb1d8c34e", + "id": "336c79d5-d096-4547-b73a-116e08a00601", "name": "Succeeded. Returns high level counts.", "originalRequest": { "url": { @@ -114391,7 +114391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13293ef7-fb63-4adb-9e09-60d5b806df50", + "id": "4c85b7fd-2fa4-4c45-9c4a-9b3aff86ab39", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114430,12 +114430,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5b55ecfd-34c9-4f4f-8b58-3ac7eb231184", + "id": "5621915a-34fe-4649-aaa5-c9154b1c12d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114479,7 +114479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9a94f9d-d329-4f4a-8d60-5755f71b32e5", + "id": "d992128e-0cca-4aa6-8517-deb98d93386a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114518,12 +114518,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7435a15-7733-42e5-896b-6517335eae6c", + "id": "e4a69b23-f2f2-4212-8460-478277d4f387", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114562,7 +114562,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -114573,7 +114573,7 @@ } }, { - "id": "b2aad05a-c1c9-46e9-bbfa-408e753d72d0", + "id": "a4274614-8efa-44b9-b198-080334f5b831", "name": "Get role insights", "request": { "name": "Get role insights", @@ -114648,7 +114648,7 @@ }, "response": [ { - "id": "0b633aab-4202-40e5-9aa4-4545f66be9b3", + "id": "04baa8e1-bde5-4734-b8c9-6c5c9df14a85", "name": "Succeeded. Returns a list of roles with information about insights for each role.", "originalRequest": { "url": { @@ -114737,7 +114737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de2469ff-03dd-4bcb-8c19-e1a0cd86c4a8", + "id": "c08382fc-9633-4b1b-9b35-d142c27e49e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114821,12 +114821,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5335351-b4b5-4eb2-b56f-7820fe109d1a", + "id": "c33c55a3-eb70-48b5-b7a7-80b519789afe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114915,7 +114915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82447407-b16f-42f0-84ce-f1382dc7fbb7", + "id": "c2b51728-ee1b-4bce-9cdf-90aea4d9f522", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114999,12 +114999,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16e8d407-8b90-4180-b734-6a5971a5bfe7", + "id": "8d208751-3532-4f2b-80cf-d943b7dca6cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115088,7 +115088,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -115099,7 +115099,7 @@ } }, { - "id": "8a7dc05b-0dc9-4512-af00-9bf7adb306e9", + "id": "d2fd7a4b-2fb1-448b-955b-8005192350e3", "name": "Get a single role insight", "request": { "name": "Get a single role insight", @@ -115136,7 +115136,7 @@ }, "response": [ { - "id": "e471f332-4749-43bf-9053-9e137b5d63b6", + "id": "742f0351-cbcd-4e88-ad31-7049b9b4cf2a", "name": "Succeeded. Returns information about insights for a single role.", "originalRequest": { "url": { @@ -115180,7 +115180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13345bdb-a47d-483e-bdd1-4705fd4e02ed", + "id": "40cefc98-e135-46f4-b081-fbb4b8eccabd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115219,12 +115219,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f7422b2c-f33c-4df1-9954-de362d37458c", + "id": "efef0317-2220-4cae-862e-55b16a428315", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115268,7 +115268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b879860-5a2b-4f2d-9787-8033f3f573c7", + "id": "d2df3900-5d33-4c13-8cf7-f84684a70ee4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115307,12 +115307,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "469973c9-66e1-4b8c-a37c-359c93718acd", + "id": "4168ce35-ebbe-406d-ab04-b177ffcc2f17", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115351,7 +115351,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -115362,7 +115362,7 @@ } }, { - "id": "60e9a7fc-b0af-4c25-a118-5b3cbf952f62", + "id": "1c6d8f88-80ae-4f09-a52f-49d5a1a9fc35", "name": "Get entitlement insights for a role", "request": { "name": "Get entitlement insights for a role", @@ -115419,7 +115419,7 @@ }, "response": [ { - "id": "f397c5a5-175a-4278-bf88-2ce8b7e5b7e6", + "id": "a518fc1f-052b-4205-a05e-31c840440301", "name": "Succeeded. Returns a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -115483,7 +115483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0941d9e4-4755-4810-a757-9918f54e11e8", + "id": "2d75657d-292b-4fbc-88a4-0596da23bd44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115542,12 +115542,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e0e04e4-2c79-4621-8876-e344186663eb", + "id": "e43251ca-8efb-4993-86fd-70ac53731b99", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115611,7 +115611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91cb9d87-6d58-4d9e-b012-b08741a3c9cb", + "id": "ba1716fe-56ad-49fd-b11f-77618f4b5837", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115670,12 +115670,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87b48e3e-5b2c-471c-940e-47ea73171c92", + "id": "d7bc0006-1216-4748-b4b3-659742ddb91a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115734,7 +115734,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -115745,7 +115745,7 @@ } }, { - "id": "403253ed-c832-484b-b4bf-35c69f5e7b76", + "id": "6415f381-2a52-4d59-8fe6-b85744dcf291", "name": "Download entitlement insights for a role", "request": { "name": "Download entitlement insights for a role", @@ -115803,7 +115803,7 @@ }, "response": [ { - "id": "db794450-0eb1-4812-a59c-0138416a699d", + "id": "2a28ba0f-9909-4b92-8539-548448d44c3c", "name": "Succeeded. Returns a csv file containing a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -115868,7 +115868,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b4f13346-3549-4f1e-9e02-4766ed9247c6", + "id": "eb051394-7333-49e3-af6a-afc032d78244", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115928,12 +115928,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a61a6e57-ae37-4d1b-b22a-5c4221c4f4b4", + "id": "500b02b7-983f-4a76-9adc-b49313832dc6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115998,7 +115998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bba75b01-8068-43e4-ac75-a0c07438cc2b", + "id": "9b73bd89-eecb-408b-bdb0-36057464fe01", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116058,12 +116058,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "514c3ab9-dd72-4896-be77-500a029137a9", + "id": "d01aaffd-de54-4945-b3d3-c54a3a8e6229", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116123,7 +116123,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -116134,7 +116134,7 @@ } }, { - "id": "fdbbbdde-9982-4078-adcb-32bc633cb8a6", + "id": "f81e6a33-f8ff-42fc-a148-5dea4d0bdea8", "name": "Get current entitlement for a role", "request": { "name": "Get current entitlement for a role", @@ -116182,7 +116182,7 @@ }, "response": [ { - "id": "de7f9e18-0f46-4bb6-b872-dea398af46a2", + "id": "a6811b6d-2256-4f8a-86d3-0453687afe58", "name": "Succeeded. Returns a list of current or pre-existing entitlements for a role.", "originalRequest": { "url": { @@ -116237,7 +116237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a978d522-6af8-40b8-92c3-b606df492f0c", + "id": "afeff424-9e8d-4d99-b09c-87d3be5789ed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116287,12 +116287,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "796692f4-1d7f-4b24-ac4a-b126438f55d6", + "id": "75da2664-506a-4c34-a349-07e17b86a858", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116347,7 +116347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d744636c-bc39-410f-a39a-d496d98de78d", + "id": "a5a9fb5f-916b-4ab0-a406-c60176575625", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116397,12 +116397,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "925b3b4e-151d-46d3-a89a-6fa132adf5e6", + "id": "ae404341-d708-4f75-8402-76861c904392", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116452,7 +116452,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -116463,7 +116463,7 @@ } }, { - "id": "3673cab1-8e58-4354-9217-988796200e14", + "id": "0f3efe35-2394-41b4-b4c0-898a47b513bb", "name": "Get identities for a suggested entitlement (for a role)", "request": { "name": "Get identities for a suggested entitlement (for a role)", @@ -116564,7 +116564,7 @@ }, "response": [ { - "id": "34f600a0-4388-4fff-a062-f590df9c2033", + "id": "8121d7d6-4cdb-4064-8ce5-55a26a941694", "name": "Succeeded. Returns a list of identities with or without the entitlement.", "originalRequest": { "url": { @@ -116661,12 +116661,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"aliquip_b4\": \"\",\n \"ex__6f\": \"\",\n \"fugiat242\": \"\",\n \"voluptate08\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"eu_a8\": \"\",\n \"mollit0\": \"\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"sint_c31\": \"\",\n \"dolore1\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"attributes\": {\n \"et_348\": \"\",\n \"cupidatatd4_\": \"\",\n \"do0\": \"\",\n \"Ut_f2e\": \"\",\n \"aliquip65\": \"\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7557894-37bd-4891-9ac6-9dc32d3c74c1", + "id": "e144deb6-2f74-4f81-b25f-12751123154a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116763,12 +116763,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a006af16-8d16-4c95-95e5-82db8f470139", + "id": "772b4bde-7399-415e-8734-353b3554e10c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116870,7 +116870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09478315-76b1-4ee3-a75d-4ce743746b8a", + "id": "bada8b85-f797-4659-92eb-6777450d9e19", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116967,12 +116967,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a3ee4bea-38c9-4192-b1e8-b3fa838b8e4d", + "id": "4a545b70-45fe-43bf-af85-f25b81e46279", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117069,7 +117069,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -117086,7 +117086,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": "fc326b7f-decb-48b0-b0ba-18e35cae8e80", + "id": "676cacf5-73f4-4e45-a8d4-ae1a69a7288d", "name": "List Roles", "request": { "name": "List Roles", @@ -117188,7 +117188,7 @@ }, "response": [ { - "id": "184c4ab7-5be5-4ab4-85b3-765c7d00128d", + "id": "b97243f6-d462-4122-83c6-1f6f675b7423", "name": "List of Roles", "originalRequest": { "url": { @@ -117299,12 +117299,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT\",\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\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\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\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"sit_80\": true,\n \"consequat_7b1\": -45699945,\n \"dolor_b7e\": true,\n \"eiusmod__8\": 97244792.93759298,\n \"nonb_\": 47132651.3469536\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 {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"APPLICATION\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\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\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"NOT_EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\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\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"fugiat__4\": 79305950,\n \"doe2\": \"quis sint\"\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 }\n]", + "body": "[\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"SOD_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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\",\n \"children\": [\n {\n \"operation\": \"STARTS_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\": \"ENDS_WITH\",\n \"key\": {\n \"type\": \"IDENTITY\",\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\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\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\": \"ACCOUNT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"dolor_cd6\": -57433283,\n \"ad_a9\": 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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n },\n {\n \"name\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\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\": \"ENTITLEMENT\",\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\": \"ENDS_WITH\",\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\": \"AND\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"CAMPAIGN_FILTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"officia_4_b\": 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\": \"OWNER\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86a4637a-9f97-4b53-b1df-cde437b7f973", + "id": "f49d1309-c30b-4467-841d-39df862470c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117415,12 +117415,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "824d4350-7468-4065-9efb-d6447b4dbfd8", + "id": "9ef82e56-6a85-4bdf-b997-c757c353c641", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117536,7 +117536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd9dbc33-fa62-4894-a290-a6355e42cb32", + "id": "ed59fc33-8a11-41c7-863e-aa69bb612148", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117647,12 +117647,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f0210c5d-0dc4-4d67-b258-ee582cd8e720", + "id": "0b073a27-70bf-49e5-8273-e8656452b201", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117768,7 +117768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaf818e2-8255-42a6-b1dd-4636317d5bec", + "id": "8c333d6a-78e8-4420-a4ca-aa34c457cc02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117879,7 +117879,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -117890,7 +117890,7 @@ } }, { - "id": "d3627fe1-f84a-4582-8f1c-b725d00c63d6", + "id": "4458bfb1-983c-4e69-bad0-009707fb206f", "name": "Create a Role", "request": { "name": "Create a Role", @@ -117921,7 +117921,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"TASK_RESULT\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\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 \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\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 },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"reprehenderit_7\": \"quis dolor amet labore esse\"\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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\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\": \"ACCOUNT\",\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 },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_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 },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"Duis_0\": 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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -117932,7 +117932,7 @@ }, "response": [ { - "id": "18a0d966-207e-45a1-989c-1d307d270695", + "id": "76e7355a-8ff6-4a38-9101-82d4859084ee", "name": "Role created", "originalRequest": { "url": { @@ -117966,7 +117966,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"TASK_RESULT\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\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 \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\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 },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"reprehenderit_7\": \"quis dolor amet labore esse\"\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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\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\": \"ACCOUNT\",\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 },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_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 },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"Duis_0\": 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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -117983,12 +117983,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"TASK_RESULT\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\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 \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\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 },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"reprehenderit_7\": \"quis dolor amet labore esse\"\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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\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\": \"ACCOUNT\",\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 },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_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 },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"Duis_0\": 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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6878693b-5a57-4dae-a718-79dbddb453c6", + "id": "eb952c82-b2ba-4e33-9e96-029a1567ef68", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118022,7 +118022,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"TASK_RESULT\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\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 \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\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 },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"reprehenderit_7\": \"quis dolor amet labore esse\"\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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\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\": \"ACCOUNT\",\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 },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_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 },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"Duis_0\": 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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118039,12 +118039,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1fd124ab-c749-4890-9af2-b0fd15c50cec", + "id": "e4693dcf-dee2-4ad1-96f0-be0e51c5df7a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118078,7 +118078,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"TASK_RESULT\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\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 \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\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 },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"reprehenderit_7\": \"quis dolor amet labore esse\"\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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\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\": \"ACCOUNT\",\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 },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_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 },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"Duis_0\": 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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118100,7 +118100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb64cafb-91d8-4582-9f8f-753c8f29062d", + "id": "54ccb276-83ef-455c-89dd-f3cd81f7914a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118134,7 +118134,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"TASK_RESULT\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\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 \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\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 },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"reprehenderit_7\": \"quis dolor amet labore esse\"\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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\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\": \"ACCOUNT\",\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 },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_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 },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"Duis_0\": 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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118151,12 +118151,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4d4f02d5-5bba-4e86-9891-878c6e6446ed", + "id": "e836e083-730f-4ec1-9878-1f686c7ff9a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118190,7 +118190,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"TASK_RESULT\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\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 \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\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 },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"reprehenderit_7\": \"quis dolor amet labore esse\"\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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\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\": \"ACCOUNT\",\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 },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_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 },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"Duis_0\": 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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118212,7 +118212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8443f2fe-ae43-4fbc-bf40-012ef840636e", + "id": "ec132ed6-abc4-4193-9fcd-aff98556a649", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118246,7 +118246,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"TASK_RESULT\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\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 \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\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 },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"reprehenderit_7\": \"quis dolor amet labore esse\"\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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\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\": \"ACCOUNT\",\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 },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_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 },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"Duis_0\": 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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -118263,7 +118263,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -118274,7 +118274,7 @@ } }, { - "id": "19b87a81-c0b4-421b-8fe6-6a38b7ebf654", + "id": "a27b9f5c-1229-42e4-977e-e6138a12062b", "name": "Get a Role", "request": { "name": "Get a Role", @@ -118311,7 +118311,7 @@ }, "response": [ { - "id": "7cf823ba-3c5b-4d30-b583-41debd4a3b4e", + "id": "f1768101-b6f9-45cc-9118-1382ca274902", "name": "List of all Roles", "originalRequest": { "url": { @@ -118350,12 +118350,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"TASK_RESULT\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\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 \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\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 },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"reprehenderit_7\": \"quis dolor amet labore esse\"\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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\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\": \"ACCOUNT\",\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 },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_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 },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"Duis_0\": 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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dbeca2e0-a551-4a86-a37f-f3338bf2e18f", + "id": "30d694ea-0ef8-4232-9389-5b6c38232210", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118394,12 +118394,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0584ab62-e418-49fc-9241-95b0fec2e332", + "id": "391ed8f7-09d1-4a2b-884f-d5384afe1e57", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118443,7 +118443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3a6fc66-57c0-4665-919f-5c06b7333cfe", + "id": "0385b22e-d782-4d83-8c41-c6a12f373487", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118482,12 +118482,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a41c582d-04aa-49a1-be58-91b83ae48d27", + "id": "ea819e80-12e3-4fc0-a1cb-464736268f2f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118531,7 +118531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0940964-048b-4b3c-97e8-f6cd455d21be", + "id": "4c449a1b-71ef-4203-a6e3-4a5b8ccd1916", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118570,7 +118570,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -118581,7 +118581,7 @@ } }, { - "id": "1968e606-d48d-4083-ba4a-2fbd44b55ef8", + "id": "70a72ef8-ae1f-4dca-9e34-54548f078e46", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -118620,7 +118620,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118631,7 +118631,7 @@ }, "response": [ { - "id": "5be6ff01-7e67-4b6f-8dd2-fc2009f26d9f", + "id": "acce3c40-7953-437d-9162-8ceaefdf2a0b", "name": "Responds with the Role as updated.", "originalRequest": { "url": { @@ -118666,7 +118666,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118683,12 +118683,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"TASK_RESULT\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\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 \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n },\n {\n \"operation\": \"OR\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\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 },\n {\n \"operation\": \"CONTAINS\",\n \"key\": {\n \"type\": \"ENTITLEMENT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"reprehenderit_7\": \"quis dolor amet labore esse\"\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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"name\": \"\",\n \"owner\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\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\": \"IDENTITY_LIST\",\n \"criteria\": {\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\": \"ACCOUNT\",\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 },\n {\n \"operation\": \"STARTS_WITH\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n },\n {\n \"operation\": \"ENDS_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 },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"IDENTITY\",\n \"property\": \"\",\n \"sourceId\": \"\"\n },\n \"stringValue\": \"\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n },\n {\n \"type\": \"CLUSTER\",\n \"id\": \"\",\n \"name\": \"\",\n \"aliasName\": \"\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"Duis_0\": 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\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98fd7ac0-4991-4063-aa2d-8533568adf0c", + "id": "f8130024-b835-4bae-9115-353bf4cd9299", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118723,7 +118723,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118740,12 +118740,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b1c7603c-2bf0-464b-b4ee-99904036a77e", + "id": "098c73d8-f67d-4cd3-aad6-470a0896daef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118780,7 +118780,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118802,7 +118802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ff6c0ee-67e4-4c6b-998c-1b3a180f19df", + "id": "06c14d26-5a0f-41b9-ac56-5a62418fdbe8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118837,7 +118837,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118854,12 +118854,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0226ec8e-f557-42f1-9f07-c4407cfc6057", + "id": "537fecf8-47ce-4af6-8e7c-016626febb3c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118894,7 +118894,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118916,7 +118916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32efbf96-892f-47ae-abd7-854578f56a5b", + "id": "602ffde9-e421-4523-b00b-4f77ec637d27", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118951,7 +118951,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118968,7 +118968,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -118979,7 +118979,7 @@ } }, { - "id": "2d978c03-b1be-42e6-bfff-ffb018f84f3d", + "id": "0edab91d-793a-40c2-8e54-5cdb82b2153e", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -119016,7 +119016,7 @@ }, "response": [ { - "id": "afa3211d-3f09-4cae-aab1-2882b694b5b0", + "id": "c7055aaf-fe19-475b-881e-5eff5dea4a93", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -119050,7 +119050,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3932170f-8317-44c0-b4f7-d9505fd7bb8b", + "id": "2d7e008e-aa49-4400-bab0-3a64e39085e4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119089,12 +119089,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "561e4439-6151-4cab-96f0-2d2b6317d4d9", + "id": "6eedf611-0d4d-4ed6-b3ba-35fd64296e17", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119138,7 +119138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d12e46b4-31d0-46cb-bceb-afe648de4c86", + "id": "90a6d119-ef49-409d-9b30-445e1e7e9b88", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119177,12 +119177,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6c2839b6-8275-47da-9ade-e0c6240c8cc9", + "id": "6ba37e50-4030-4393-b393-7f2eb7466dc5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119226,7 +119226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33795a01-fb12-4e0e-acea-ca5b208a451c", + "id": "ecf3fda6-7215-4841-a8cc-f5cdb00be125", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119265,7 +119265,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -119276,7 +119276,7 @@ } }, { - "id": "a774b4ba-ec2b-47dd-99ea-6143fbb12f32", + "id": "bfbc4f72-43d3-4bab-b2a1-1e7e7a99d6e0", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -119319,7 +119319,7 @@ }, "response": [ { - "id": "83df590c-e0ec-40fd-921f-ba2bf68ae383", + "id": "5b79b8cd-52ad-4eb7-892b-45cce87bfa4f", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -119371,12 +119371,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n}", + "body": "{\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed53eb09-f8f3-4627-8d89-1469f83a0a11", + "id": "74271558-5e25-47e9-9514-78fce79bdb56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119428,12 +119428,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "185cd453-71d7-4d9e-a4db-6ab8bd05b9fc", + "id": "aa553180-8b8b-4dd4-bcd7-5ecbb3eabfb9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119490,7 +119490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "177dc9cb-d419-43f1-b9e7-dd95e8ca195e", + "id": "3ef1c762-8c6b-4cbc-9569-c253b96a68db", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119542,12 +119542,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "575d9c1b-00b3-4736-82f8-cbeaf4cc99d4", + "id": "1ce5b6d7-91b5-4406-a469-55a0b22b136b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119604,7 +119604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9fdc91e-cde6-4cb2-a8bb-4d0521c19ef4", + "id": "bd0afd5c-d0f3-4b37-a8e9-01290bcd80d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119656,7 +119656,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -119667,7 +119667,7 @@ } }, { - "id": "e4c27a57-e159-4386-a62c-291213ea78ef", + "id": "a572e024-64dc-42dc-a17c-6d353e8b8415", "name": "Identities assigned a Role", "request": { "name": "Identities assigned a Role", @@ -119748,7 +119748,7 @@ }, "response": [ { - "id": "12451bb6-9868-4e24-97e0-f30d87d4eefb", + "id": "a2361eb0-69e3-44b7-91a8-3f1fef609ced", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -119839,7 +119839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09f5758b-a2f5-47fd-94e8-0dae77021d7b", + "id": "08052089-1276-46a1-a55c-6d1d5465a173", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119925,12 +119925,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e02ab22-06b9-49a9-b12b-a965ea6a2d0b", + "id": "652ea060-5bdd-4ede-8161-f1fd53c2046d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120021,7 +120021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1d3d671-c73b-43bb-83de-94a7c7ebc0fb", + "id": "9d77bea4-7dd3-4f7e-a86b-96807cc04505", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120107,12 +120107,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dabdb864-f2b8-4417-a4ce-1da540bcfa21", + "id": "b38ada79-04a3-422d-a8a4-6ddd094f7381", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120203,7 +120203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca678509-a5d2-49ac-bd91-5048617f3019", + "id": "427cd420-1218-419c-acf2-5aec97b0b0e2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120289,7 +120289,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -120306,7 +120306,7 @@ "description": "", "item": [ { - "id": "6dbd816d-138f-4d14-9e54-98d3f63fc1d3", + "id": "58a204cd-1748-43c1-bf22-3dfa3983eca5", "name": "Configure/create extended search attributes in IdentityNow.", "request": { "name": "Configure/create extended search attributes in IdentityNow.", @@ -120349,7 +120349,7 @@ }, "response": [ { - "id": "b2d95dbd-32b9-4c3f-9683-1d2bd3010768", + "id": "cd203800-d5e3-4d49-96c8-76905ad78444", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -120406,7 +120406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "574d2f60-0b58-46e7-8fd7-02b025c23a24", + "id": "673c264b-34a2-4e3a-9603-73d29d2b8db5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120458,12 +120458,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b70ead1f-d005-443b-9932-4b879bcd0606", + "id": "689d52cd-f459-4033-958a-3d882a2c8fe8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120520,7 +120520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45ba8474-4e0b-486d-b7ae-c46dae90a41d", + "id": "0316b74f-e496-48e2-99fc-3785258cfa56", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120572,12 +120572,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "88d812ce-f86b-4280-a950-18e32b8e7a54", + "id": "52be9c8f-c75f-486e-b0be-210c41b30614", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120629,12 +120629,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56c0b2e0-2d53-4477-ba6f-e84060cf370d", + "id": "a60bccd8-ddb6-4b2f-8989-ea5aba13324a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120691,7 +120691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "457833f0-cc73-47d8-925a-2e3a1f54c79c", + "id": "617c6621-0bb0-42ec-94e1-225c144a88bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120743,7 +120743,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -120754,7 +120754,7 @@ } }, { - "id": "e5b255b2-98db-4d00-83a4-8b7a9445f4d4", + "id": "6ac010e1-fb76-4830-8bef-801c69bc36eb", "name": "Retrieve a list of extended search attributes in IdentityNow.", "request": { "name": "Retrieve a list of extended search attributes in IdentityNow.", @@ -120784,7 +120784,7 @@ }, "response": [ { - "id": "8db011d3-2356-4eab-ad95-3df72b6a5110", + "id": "67f8d74c-e8ce-457f-a39f-953fd4191460", "name": "List of attribute configurations in IdentityNow.", "originalRequest": { "url": { @@ -120828,7 +120828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dde814bd-30fb-45d9-8a09-dbcb91b1109d", + "id": "782592e5-6591-4205-a201-cb5a8c7c537c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120872,7 +120872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad5894be-8b85-4121-ab26-2f7ab4615136", + "id": "c7926037-f7b9-4ff1-bab3-c66441fd3256", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120911,12 +120911,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b4d53147-2caa-43f1-83c8-c07e0dd4365d", + "id": "a0fe1255-d583-453c-a758-66f345f966ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120960,7 +120960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb51e3e3-0818-4c66-9591-894706c80292", + "id": "7a040e2a-a031-4547-9840-c53242efe6dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120999,7 +120999,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -121010,7 +121010,7 @@ } }, { - "id": "3ff0f1c8-b7fb-4fdb-834c-d693bc666af8", + "id": "95f21cfc-1987-4492-9888-fc925e20fdac", "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.", @@ -121048,7 +121048,7 @@ }, "response": [ { - "id": "a2503b0e-5174-46ad-bbce-0b2447497aa9", + "id": "673c4a66-f84e-4cea-a5dd-37647b055103", "name": "Specific attribute configuration in IdentityNow.", "originalRequest": { "url": { @@ -121093,7 +121093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45a8ce20-4728-43ba-8129-ae37af6aefa7", + "id": "7df5057a-59ba-4325-bd8f-3f181c9d073c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -121128,7 +121128,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1cce50b7-0655-46bc-adc0-6815899e05d7", + "id": "3dec3619-3029-4e48-bffd-a47e8a448cfc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121173,7 +121173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ec8652f-123e-4f0c-9851-ea8967ca6845", + "id": "05e1582b-8b8c-4f64-9ac4-c7ec9c5310f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121213,12 +121213,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6edd5f41-d3ec-469c-8ef6-bcc130076c57", + "id": "980cb322-d876-42cb-831d-cad3b709b749", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121258,12 +121258,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d23e9fe-cf91-4fb3-b144-75a0e3a6f8e8", + "id": "3d1c4655-5594-4ec9-b392-63f6fc75f46e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121308,7 +121308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67a2e111-2381-4a59-bc79-2c3e5a38cab3", + "id": "4d2cf9b8-fdeb-4664-9a6c-3f6b23b46616", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121348,7 +121348,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -121359,7 +121359,7 @@ } }, { - "id": "dea54bc4-7df1-4819-941a-5eb767c75d04", + "id": "ab9fd374-a966-49e0-a0b2-fd35b1425986", "name": "Delete an extended search attribute in IdentityNow.", "request": { "name": "Delete an extended search attribute in IdentityNow.", @@ -121397,7 +121397,7 @@ }, "response": [ { - "id": "4fd74aa0-9110-4458-bd7e-d2179fb63d04", + "id": "c3f971cb-a609-496b-8a65-e05175251abe", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -121432,7 +121432,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d765afd9-7abe-4a35-bf0a-aa5d1c6bd05d", + "id": "0957ca13-9739-4eac-9fa1-1e54ca8e0423", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121477,7 +121477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8514be5-ab2c-41d3-9bbb-8292fa229695", + "id": "d86af75e-294a-46ce-8041-471ed58fbee0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121517,12 +121517,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "351960ee-7441-4872-9e89-6cac97fe97fd", + "id": "c4ff3b96-87c9-4ba7-8ba3-b36f13146a66", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121562,12 +121562,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "95bcf657-e82c-4ed9-a5fd-fdef8ac838f0", + "id": "d9acd86b-7ce8-4ed1-9d92-afdbf80f4fcf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121612,7 +121612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4fc0583-a4bd-4f8e-a749-f9d037b7bb1e", + "id": "9edf55e1-056d-47a6-ab47-cfe286655c61", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121652,7 +121652,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -121663,7 +121663,7 @@ } }, { - "id": "f3628187-e826-47d1-b97e-58ca6bdc6456", + "id": "466f54c5-c7ed-4c44-b385-07cb6e989be9", "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.", @@ -121703,7 +121703,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -121714,7 +121714,7 @@ }, "response": [ { - "id": "cea9455f-74db-43a3-83b1-8c6591d5783b", + "id": "e87d8050-a713-42d2-97d3-32d0fdb71a42", "name": "Responds with the Search Attribute Configuration as updated.", "originalRequest": { "url": { @@ -121750,7 +121750,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -121772,7 +121772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b1b3adb-cafd-4d57-8df8-ba68fd7435b9", + "id": "8b3e831b-46ef-480d-9186-4f28296305e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121808,7 +121808,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -121825,12 +121825,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3956609-be22-4a2f-8037-1e7f26f10bbb", + "id": "6db90b39-7839-47e1-b034-c550386b21b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121866,7 +121866,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -121888,7 +121888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71654d41-396e-41ac-a586-0745798080bf", + "id": "a826da3f-741a-4bfa-8b5f-0f6bd6246191", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121924,7 +121924,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -121941,12 +121941,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57c57a1f-8023-44c7-bc45-34525f7fb149", + "id": "0f4ce762-1994-4b4e-a82d-50183bd79847", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121982,7 +121982,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -121999,12 +121999,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "604e00ad-bb87-4144-8f68-9dbc55985d21", + "id": "46e27a91-b6f9-4aa1-95bf-a7b4cd42f4bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122040,7 +122040,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -122062,7 +122062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "234435fb-3859-49f2-a3c7-0e73b3040820", + "id": "55896feb-965e-4b69-90a5-480fcccd2cfb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122098,7 +122098,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -122115,7 +122115,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -122132,7 +122132,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": "89040b4d-9df0-4821-ae09-abf810c14f75", + "id": "a54ecac8-6951-4461-90c9-f02d4acba4c3", "name": "Create Segment", "request": { "name": "Create Segment", @@ -122163,7 +122163,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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\": \"SOD_POLICY\",\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", @@ -122174,7 +122174,7 @@ }, "response": [ { - "id": "210524fb-47cb-463e-816a-4f0d58c7fb40", + "id": "7c176d15-47dc-4bb7-a5d8-66c44f888527", "name": "Segment created", "originalRequest": { "url": { @@ -122208,7 +122208,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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\": \"SOD_POLICY\",\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", @@ -122225,12 +122225,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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\": \"SOD_POLICY\",\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": "1a8dfa45-6d31-416b-8156-a22c22bb0132", + "id": "ccf9e41d-0a32-4c58-9296-42b146ef9104", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122264,7 +122264,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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\": \"SOD_POLICY\",\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", @@ -122281,12 +122281,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b304e025-851c-47e5-81df-e1cfb180caa3", + "id": "acd46547-4cde-4aca-933c-f12c0f7815bd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122320,7 +122320,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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\": \"SOD_POLICY\",\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", @@ -122342,7 +122342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15649055-be6a-4239-9681-38b4ffe4dc3f", + "id": "e4d4f79f-1777-41d5-a9d9-435928c08391", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122376,7 +122376,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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\": \"SOD_POLICY\",\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", @@ -122393,12 +122393,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "532bc6da-ebd8-44e8-949e-48a6a8a62769", + "id": "1a92aeff-e72a-47b0-adda-913972b31f88", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122432,7 +122432,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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\": \"SOD_POLICY\",\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", @@ -122454,7 +122454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3543f2b-bf91-47c1-954c-153dd5405cd0", + "id": "83b93362-729e-4453-a6a8-b4e8056b8a95", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122488,7 +122488,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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\": \"SOD_POLICY\",\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", @@ -122505,7 +122505,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -122516,7 +122516,7 @@ } }, { - "id": "07e9edf4-ccc0-4848-86c7-7884fb6f3963", + "id": "afd54340-333c-49b3-8ebd-cc452bd2c033", "name": "List Segments", "request": { "name": "List Segments", @@ -122573,7 +122573,7 @@ }, "response": [ { - "id": "6778f9f4-e922-4b0e-b55c-972e14acabc5", + "id": "491d7c8b-3a16-4c39-ba57-c862849bbeec", "name": "List of all segments", "originalRequest": { "url": { @@ -122639,12 +122639,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"ROLE\",\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 {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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_VIOLATION\",\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 {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"CONNECTOR_SCHEMA\",\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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9603d288-1060-47cb-9cfa-4509d9e51362", + "id": "c1a3c33a-e300-409f-8660-a63d9f8c0345", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122710,12 +122710,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4403ab7f-8481-4851-927d-f3c89b300c58", + "id": "d3480748-60b5-4641-915a-ea1f75a4540f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122786,7 +122786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c001d2bb-7dab-4367-bf71-eb04f1eefeb7", + "id": "5f4a37ad-649b-4716-9aad-595ee3957954", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122852,12 +122852,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "96714d79-d438-4437-ab51-53b075172454", + "id": "866f6486-6b06-4db6-8d81-fe10d4fc5f0c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122928,7 +122928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b68c02c-b63a-438e-ac68-b3cf8f2520c4", + "id": "0ac426a5-8f28-4771-8887-7fdd7e95a9d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122994,7 +122994,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -123005,7 +123005,7 @@ } }, { - "id": "06cf9897-fb4e-4165-8abe-cd873a27330d", + "id": "1cf4553d-8e3c-4dab-a66a-557b669cbf63", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -123042,7 +123042,7 @@ }, "response": [ { - "id": "c65b5819-593e-46ae-bc0c-0dbcbcf75d25", + "id": "9569725e-bfdb-4368-8069-e1f96bce4c93", "name": "Segment", "originalRequest": { "url": { @@ -123081,12 +123081,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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\": \"SOD_POLICY\",\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": "19f738eb-8ce8-4de9-b21f-d64edfe5bc90", + "id": "1442a793-ca12-4e90-9243-55a1133fba58", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123125,12 +123125,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2edef9d-4eeb-4d10-808d-820919a8677e", + "id": "66934b00-1122-4142-8bce-0156d7e1935a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123174,7 +123174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d602be0-a5dd-4796-9c82-313bb0fd42e1", + "id": "5339acab-1c24-462f-84e7-56d5e3cafc55", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123213,12 +123213,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c00673c-8d80-489d-86bb-b4839f5aa5cd", + "id": "0fe77f67-57ea-407a-b4cc-1b10c38433ee", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -123257,12 +123257,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df5f9e1a-abec-4da9-a9ce-1ac2f8608bca", + "id": "7070e29d-e3c1-4519-bff1-bb953c6ce26c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123306,7 +123306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2b056f1-e75a-4907-b5bb-df4085205939", + "id": "a1202478-64a5-4392-bac1-55be3d2da815", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123345,7 +123345,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -123356,7 +123356,7 @@ } }, { - "id": "dd5f689d-4b5d-41ea-9ce6-af414f9dfdd2", + "id": "37063421-fa03-4c2c-b7b5-beb343371215", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -123393,7 +123393,7 @@ }, "response": [ { - "id": "7e1a7038-f5fb-4120-b4c9-a395b7835264", + "id": "3d45871d-2353-417b-9ea2-7eb7c320ff26", "name": "No content.", "originalRequest": { "url": { @@ -123427,7 +123427,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bd7d322b-76f2-40c6-a1bb-693bf4e64de3", + "id": "c1c96147-c892-473a-b555-125ffd5f9b3a", "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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "03ec20c4-7efc-4544-a8f3-8247575c0ac9", + "id": "2abe307b-5d58-4028-8723-17a71d1cf21a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123515,7 +123515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f6b7f3e-f783-4fc3-b1d7-90bd730c9ab3", + "id": "66175a23-7660-42aa-bb5f-963d5eba224f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123554,12 +123554,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1511a657-c08a-42b5-b3fe-c1ad3e340985", + "id": "ddeb2c80-d2e5-436f-82c5-d68e26f97398", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -123598,12 +123598,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a4201c6-283f-43d7-a95f-5162c2369e90", + "id": "edfe37ca-e31e-4333-af42-4b1765971cb1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123647,7 +123647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4583288-6b66-467a-8a65-f68612d47f29", + "id": "e30ad16a-7e2f-4349-a768-d3de907e6bb3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123686,7 +123686,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -123697,7 +123697,7 @@ } }, { - "id": "1c7c2974-12b2-4279-a1b1-e620bd5fe18b", + "id": "2f72a52e-e460-497a-ab69-d31e654d9521", "name": "Update Segment", "request": { "name": "Update Segment", @@ -123747,7 +123747,7 @@ }, "response": [ { - "id": "7de2e882-a4ad-40e7-b41b-bb1670cf6cba", + "id": "aa2e7373-9325-465e-a323-296f8e1a74ae", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -123799,12 +123799,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"owner\": {\n \"type\": \"WORKGROUP\",\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\": \"SOD_POLICY\",\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": "6497918b-612e-4ce7-bf99-533206aa3ee5", + "id": "4da160b2-db9a-4c31-b321-1207b22d717c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123856,12 +123856,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b852c8a-bdb3-4505-b324-9b53cfe4fd95", + "id": "e3d903a1-2f1c-47b6-8b98-8ef200d2ecc3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123918,7 +123918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74084a53-8567-44d5-841a-043f77d0aef7", + "id": "aaa29d72-5c30-4d2e-a559-bd96316f3018", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123970,12 +123970,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c1d686f7-4b36-4aca-85cb-dabb9deb0880", + "id": "505c4f7b-b3cd-49cd-acee-e09ae1d17074", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124027,12 +124027,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "20b9f4e3-4e04-43bd-9ac1-bd925364cd83", + "id": "56bcd46c-8570-42d8-bc2b-cc0936332d62", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124089,7 +124089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee028af9-bc07-45a8-a33b-68b396cbdd70", + "id": "b4805726-c39a-4b33-982a-943fd2ea7326", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124141,7 +124141,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -124158,7 +124158,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": "a7bcb33c-5971-46db-8e66-4e4a05f6db9a", + "id": "9e9dfe09-785c-41cc-8079-f5a5116d543a", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -124233,7 +124233,7 @@ }, "response": [ { - "id": "c0710ed5-ead9-4d7c-8a65-9c58e087b78d", + "id": "c013f38e-3827-4918-ab2d-0a616cd47ece", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -124317,12 +124317,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"attributes\": {\n \"et_7d\": false,\n \"labore30\": -99623926.38846911\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 \"in_c\": -985920,\n \"ad_e\": false,\n \"Loremfe\": -94878139\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 \"cillum_439\": 47890764.88512373\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 \"aliquip01\": 25911450,\n \"nulladc5\": true,\n \"aute57\": -10282922,\n \"Duisddf\": 74223192\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": "eea09132-2acb-4cb2-b8f1-150c521afb89", + "id": "f5479327-0eee-4df5-abab-894c25e48a04", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124406,12 +124406,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4bf3a9a2-ce18-4abf-b8d6-22f33e51320e", + "id": "899993a0-675e-4b60-b34f-ae8c1054c64c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124500,7 +124500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f037e66a-09a0-46ee-908e-68ef64f03384", + "id": "b90db672-adbb-4558-9c18-df1d81d9ba9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124584,12 +124584,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "994ca7b8-83e3-41d9-bc8d-b8a3ac6f9a30", + "id": "4604b5f4-1c87-41da-867b-cd377d5e1d8a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124673,12 +124673,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "07612412-ffc6-4a05-a10d-cdc117867e86", + "id": "6a9885ba-cf6c-46e0-b582-82d09194ace9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124767,7 +124767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c71a1633-5035-4f8a-abb5-8ff0270636ac", + "id": "b436f890-5442-4f3f-927b-f0974afb06c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124851,7 +124851,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -124862,7 +124862,7 @@ } }, { - "id": "175763e7-cc1a-4cfc-af87-c50749565222", + "id": "7da5b75b-a94b-4d9c-bf91-781a426ff3e0", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -124893,7 +124893,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -124904,7 +124904,7 @@ }, "response": [ { - "id": "2bf6a436-163c-45bc-a01b-2f26e321fe94", + "id": "0096c169-808d-463b-aebe-af07287cff99", "name": "details of the created integration", "originalRequest": { "url": { @@ -124938,7 +124938,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -124955,12 +124955,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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": "49824b4d-8a15-4ba2-9b1f-c8823c4fee15", + "id": "e28331d8-0c62-4a5f-9069-78701b159aea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124994,7 +124994,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125011,12 +125011,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c2503f67-207d-4222-8e65-e8a0a22bc09c", + "id": "3b854ea0-4f3d-41f0-ab86-8dbb7019773b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125050,7 +125050,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125072,7 +125072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e715024-d1c9-4890-b2e4-1124ba7f2965", + "id": "0cae9dd3-6a4f-4859-876d-684d7050bce1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125106,7 +125106,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125123,12 +125123,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c44e289c-6101-4b4a-b357-61df4119afa6", + "id": "aa6ea690-ce89-4443-b37f-46bb89eb100a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125162,7 +125162,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125179,12 +125179,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d45040fa-df5e-48d6-904a-1e953b9c2b78", + "id": "7e2d5abe-cc1c-4158-8525-ff6b86696e92", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125218,7 +125218,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125240,7 +125240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "705bc057-3cac-4ebf-a2bb-e98a52059ced", + "id": "01bc64a7-1f87-4386-b65e-5ed8e5891c5e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125274,7 +125274,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125291,7 +125291,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -125302,7 +125302,7 @@ } }, { - "id": "cd39b6b6-fc2e-4914-9b54-a12b1860e516", + "id": "b472f6e2-aba6-4a8a-af00-171ad101c8a1", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -125339,7 +125339,7 @@ }, "response": [ { - "id": "e1e30a6e-f49a-4d63-be3a-05ce2d3d811b", + "id": "89f1faff-f498-4a4b-b3f5-bc0ad0cc04a5", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -125378,12 +125378,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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": "e33fe126-6474-4c47-b97f-bdca43130c1d", + "id": "4e0cf501-7c94-4097-a335-02b1a63c9199", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125422,12 +125422,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c9f5e021-9d9d-49ff-9b5f-70bfaca38294", + "id": "af355444-1ed3-4cdf-b1f6-1cdd2ac83d2b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125471,7 +125471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c5d8bd2-2116-4e92-bba7-2c7ff9bde27b", + "id": "54502b8a-e689-4ce7-9e66-0ba64a785f8a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125510,12 +125510,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a6372f42-68ff-4b02-9afe-13f3e546537b", + "id": "e6c267c2-4ba2-4688-8141-c2eacd63f9e7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125554,12 +125554,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ef249103-11fd-4c6b-b911-ac3808c8c47d", + "id": "bd2a593c-a8d3-4557-b390-1e16685f35f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125603,7 +125603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82fcf8fb-dfb1-47fc-b900-a75aee0e77a7", + "id": "c68f92c1-d087-41e8-802c-eb22d0bcf421", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125642,7 +125642,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -125653,7 +125653,7 @@ } }, { - "id": "a7bbbc63-64c1-4f57-917b-e9fa8c0d964e", + "id": "1c8b29b1-a7ec-44ad-b5ae-3a5ffebc957e", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -125692,7 +125692,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125703,7 +125703,7 @@ }, "response": [ { - "id": "9c5e8d6f-e69f-4092-8f85-cdeda11d644a", + "id": "cfe85399-e4e8-421b-b834-57405a67296f", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -125738,7 +125738,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125755,12 +125755,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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": "1ff80eae-2adb-46e5-8f74-00ac322b00ff", + "id": "087ca585-cd55-4f44-a7a4-650dc561922e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125795,7 +125795,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125812,12 +125812,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "551dce4f-83b5-413f-847a-5caadad0ad62", + "id": "54feb7ca-2fbd-42e5-a108-88a9285aec4d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125852,7 +125852,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125874,7 +125874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f67001e-81ce-421f-b73e-40e7bd12da53", + "id": "e7ffe313-0cec-4a74-b48d-44df17362f7f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125909,7 +125909,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125926,12 +125926,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a81ce66a-a6f4-4b85-a91c-6b9c2fd689fd", + "id": "e73d9996-64ea-4e39-b0c6-5ca8ea670319", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125966,7 +125966,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -125983,12 +125983,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "08bad653-5c5e-4306-8e36-26fcc31ee409", + "id": "500b4e2e-bd93-45ba-88c2-eb97728fcea9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126023,7 +126023,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -126045,7 +126045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89c622dd-1add-45bb-b91e-bbbd6b8021af", + "id": "86b90b07-4f48-440b-b480-6c4e287c46b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126080,7 +126080,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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", @@ -126097,7 +126097,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -126108,7 +126108,7 @@ } }, { - "id": "c944389b-d567-4368-9ff2-b3aa1ee84f9e", + "id": "9e3e16bb-0452-4ddb-bd98-dd9acd546612", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -126145,7 +126145,7 @@ }, "response": [ { - "id": "990712ee-d037-46ba-9cac-02f9c6a52e75", + "id": "bb308bfb-bb6e-4808-9bb7-ee63ce84604b", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -126179,7 +126179,7 @@ "_postman_previewlanguage": "text" }, { - "id": "249a4fc4-1928-4207-ba5c-c93b6d1923ad", + "id": "8cec11d5-8413-4320-93c7-8850c817600c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126218,12 +126218,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a14dd97d-f79b-4da2-86e4-de5883a1012e", + "id": "afbb4e37-ddb3-4f11-8d7c-997329ac1fe4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126267,7 +126267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b31e410-18d0-4c27-a2a6-08beec58c2ea", + "id": "5f0ceb16-4d40-4e62-a87b-2cb02958963f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126306,12 +126306,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "02e6c32b-faac-4163-ab69-daf1a79c5e23", + "id": "b27fd30e-f9dc-46ce-9259-b90efe9b4408", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126350,12 +126350,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1eda6aa0-f41f-485e-97cd-15b09ea7f83f", + "id": "ba6f8e57-50a8-44de-870b-02d82910d530", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126399,7 +126399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a338ca8e-1cc5-4e47-8d74-59d796862045", + "id": "45cac260-fa13-4820-ae3f-bf00d6d26793", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126438,7 +126438,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -126449,7 +126449,7 @@ } }, { - "id": "ddd51c37-dcb5-47b3-98d8-d44faada66ea", + "id": "ded42d4f-7861-49e0-9ebb-d40f4e369021", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -126488,7 +126488,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -126499,7 +126499,7 @@ }, "response": [ { - "id": "eaab18f2-ea47-4a15-98a6-1c5e3a8a091a", + "id": "5a1fa6ae-5e5e-4553-b661-457f5c5665c6", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -126534,7 +126534,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -126551,12 +126551,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"Duis_34\": true,\n \"dolor__3f\": 94583719.17776173,\n \"magna85a\": -5962142\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 \"pariaturc4\": 28145177.09643987,\n \"tempor_c5f\": \"inci\"\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": "d4bb5232-1ae2-4525-a1f3-9cef3d72aa41", + "id": "793ee3fd-322c-4d3f-ba91-05d805b7557f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126591,7 +126591,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -126608,12 +126608,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7be2e854-f185-4406-9c1a-42f839668db0", + "id": "bea23570-2e05-4a3d-a7ba-70e10a04c5f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126648,7 +126648,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -126670,7 +126670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ba4ebc7-16aa-40fc-b045-9645902751a1", + "id": "91870f94-8ecf-4fad-b11c-52795647d13c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126705,7 +126705,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -126722,12 +126722,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89b7a26c-c68a-48c5-acc1-233cd56d0923", + "id": "66aa101f-d6a1-4e50-8600-19bc1586e0ca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126762,7 +126762,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -126779,12 +126779,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e65a3f43-f758-4065-bdfb-c29d9dedf199", + "id": "70ff6253-1412-4382-9b77-5e72441df97a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126819,7 +126819,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -126841,7 +126841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34f103ee-b123-466e-bf0d-22359ffce595", + "id": "18a4e6fb-83fd-49cc-9de7-1805994456e2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126876,7 +126876,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"operations\": [\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -126893,7 +126893,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -126904,7 +126904,7 @@ } }, { - "id": "f983437f-7117-4c0b-864a-6c5c22d2c2ab", + "id": "a8ced92d-e9bd-4ecd-af65-6075fb06ad7a", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -126934,7 +126934,7 @@ }, "response": [ { - "id": "cb1d5bbb-71f7-47d2-ba4f-0a79e7d12178", + "id": "2989fbfd-4ff0-4e31-99d5-2fccf9c6d785", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -126978,7 +126978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e631f072-cdff-4bf5-80d2-6c2c752f19e6", + "id": "8090a707-0387-48b5-9fd5-b99c345a86fe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127017,12 +127017,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dad85a00-60e1-4a90-b8d3-c7971ddbd498", + "id": "906467fc-3599-424c-a4c9-8046923b4612", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127066,7 +127066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de00c7b4-e1d1-4c3b-9c2c-b4df939cb19e", + "id": "30702c5e-65b8-4eb7-ace0-bec6ca3706cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127105,12 +127105,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "23b79229-5c4d-4d4f-a043-33a0c6fa1af0", + "id": "e699eeef-e1dc-42ad-a00e-08413082a70f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127149,12 +127149,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4403dd1e-ff0b-4e7d-911a-cc8e383d43d8", + "id": "b77cbc96-bc03-4039-8936-53f1d710a685", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127198,7 +127198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13f83c09-a9c0-4c59-952e-b6c5e98fe461", + "id": "d0d1c305-f902-4de6-931b-044e3b75c269", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127237,7 +127237,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -127248,7 +127248,7 @@ } }, { - "id": "4713f732-1d9f-4d77-8a20-65ea8f28577c", + "id": "287e5e9f-b15f-4f9e-a581-9617079c6091", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -127286,7 +127286,7 @@ }, "response": [ { - "id": "ec5e31df-0eea-449e-9494-7da4d95e362a", + "id": "af732c1c-4c1e-46e4-9181-ec5ab65436be", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -127326,12 +127326,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"officia3\": 90862890.33425379\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 \"in_\": -41659193.272909656,\n \"ut_d4f\": 3839327.4365776926\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": "97d5ab2b-074d-4236-8985-0e40079bc264", + "id": "ff333d60-9dab-43f7-943c-ac3a329a399f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127371,12 +127371,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "722836a0-5f83-48e2-9fc5-700e5e4eb0cd", + "id": "fd0d1dd9-5a15-465c-8ec8-e5dadb3fa948", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127421,7 +127421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73fd7a59-5130-41b3-a948-8b045ccbf048", + "id": "48ae7856-f3a5-41fb-9fbe-b2a7a1a6b479", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127461,12 +127461,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4bfbb66b-a65c-48a6-b830-ac29d7a42ef1", + "id": "50e6a387-a3b3-4bd7-ba29-9fa59b9fb8d9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c7ff2d32-3ae7-4b3e-ab17-d86e50606b2b", + "id": "59e3de53-cbf7-46eb-a381-2cbc958ae8a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127556,7 +127556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca299caf-a650-4526-811d-e3ef3f59d073", + "id": "1bfdb3d7-f25c-4d16-bff1-0ced721ef9d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127596,7 +127596,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -127607,7 +127607,7 @@ } }, { - "id": "8ffa99f7-3147-4683-9547-0286b01514d8", + "id": "18d03034-c149-434e-9f78-d38db3aed970", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -127637,7 +127637,7 @@ }, "response": [ { - "id": "1ab94b5c-cc16-460d-9dde-ef497ade9ec5", + "id": "cc488b7e-269e-4d53-ae4e-8963e58e47dd", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -127681,7 +127681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27c17855-1d5b-4ce9-8a00-f85edd47c8ab", + "id": "02b203d0-d4d4-4b2c-8d18-0cf19f4bf0bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127720,12 +127720,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe223244-4dce-4a13-85b8-277cc1816598", + "id": "58ce0c40-9e4f-4af1-b6cd-750f9603be54", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127769,7 +127769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dfef41b-f2ff-414f-a6ec-a8c99d524dbf", + "id": "bf87a831-d8d6-4fb0-b9a1-8ba51f58e5e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127808,12 +127808,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a7a98f4a-7fe5-42de-a313-115118405ab7", + "id": "e885be4a-9f3a-4ce1-8d33-3aba85a64904", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127852,12 +127852,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "95496740-6537-4d44-bb01-14c7f5eca1ed", + "id": "ec900094-99e1-4281-b3e7-07d104f007f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127901,7 +127901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "608799ee-bc3a-4227-9f25-0bce466b4681", + "id": "f300306a-b107-4dd0-96e1-3725ec72f0e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127940,7 +127940,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -127951,7 +127951,7 @@ } }, { - "id": "da8e9b6e-67c6-4c1c-a80e-340c52267f40", + "id": "072fd6e7-c55e-43dd-bd0f-4c24160ac805", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -127994,7 +127994,7 @@ }, "response": [ { - "id": "33b6b2ee-0c9c-4853-a2ac-dc891dbc47e3", + "id": "8373f9e3-45d4-4c5c-9be2-f43bed9f3a8c", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -128051,7 +128051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c37fc8d4-02b3-4ce3-a89b-f88bb74233d1", + "id": "b7a24536-3d71-498a-961e-7d29a5eee242", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128103,12 +128103,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff9582ee-2998-4aea-93ce-25ae362b95af", + "id": "96705879-938a-4972-9e7f-25415b4eeaa7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128165,7 +128165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c119406-b030-4caf-97e1-54af8d02d919", + "id": "0a61bbf7-85b1-4ad5-b98f-4fb3a32c65c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128217,12 +128217,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b5e06d5-50bf-4c76-86d1-10fb39eabf47", + "id": "aec8f5b5-231c-4bd9-867a-db7b45d67dcf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -128274,12 +128274,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a03dfc0d-37e4-48c7-ae52-911759cc6bd2", + "id": "9a2373b9-2ace-43d4-a5c0-1311fa29d302", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128336,7 +128336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65621991-cb9c-4121-b17c-06724cbac6d7", + "id": "d667be9f-34cd-485b-b3f5-bb90bea1f931", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128388,7 +128388,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -128405,7 +128405,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": "7d1515ca-f5ad-449f-a1d8-358676147c49", + "id": "f1f96c27-b394-4ee2-95f5-a0de29978225", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -128436,7 +128436,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -128447,7 +128447,7 @@ }, "response": [ { - "id": "f63ad13d-e6a1-4327-96fc-e93122f2edbc", + "id": "1edd27b5-38e1-4619-bd66-3a05dfa8bc41", "name": "SOD policy created", "originalRequest": { "url": { @@ -128481,7 +128481,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -128498,12 +128498,12 @@ "value": "application/json" } ], - "body": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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": "d0e97911-3f20-4397-b502-6b767e2652f3", + "id": "fce59b41-c763-4dc1-921d-d16322d672e4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128537,7 +128537,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -128554,12 +128554,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "861866f3-95c9-41c3-81ac-735f5120f24f", + "id": "b1930e7d-98fb-4b66-8b82-e86a8fa461c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128593,7 +128593,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -128615,7 +128615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "910f4e4d-b9f7-41ce-8412-2faa663b7a4d", + "id": "7c9762a1-09be-47b0-9850-62689abe2b10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128649,7 +128649,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -128666,12 +128666,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb001a18-032d-4bd2-8c0a-d817f6050995", + "id": "4c42ffbe-adcd-44e1-a04b-55d8e3e830c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128705,7 +128705,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -128727,7 +128727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82616a41-9175-42c3-850a-fbcbb420afc4", + "id": "414164e7-47db-4fa8-a3ce-b1cb7c3f8430", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128761,7 +128761,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -128778,7 +128778,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -128789,7 +128789,7 @@ } }, { - "id": "82e13dc5-23dd-4a03-9ff4-9ca6eeb62b09", + "id": "64466f3e-1f21-431d-b47a-82bf8d1c3f70", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -128855,7 +128855,7 @@ }, "response": [ { - "id": "7ee280de-e45b-48ad-a6fa-2bca5c76463a", + "id": "d25dfc3c-ec9e-4d63-9c0f-7374c648e850", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -128930,12 +128930,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"ownerRef\": {\n \"type\": \"CONNECTOR_SCHEMA\",\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\": \"CAMPAIGN\",\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\": \"CERTIFICATION\",\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\": \"PASSWORD_POLICY\",\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\": \"ACCOUNT\",\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\": null,\n \"ownerRef\": {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\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\": \"CONNECTOR_SCHEMA\",\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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bbae6c20-7700-4483-810f-525fb7666354", + "id": "b1a77a80-c086-4cd8-9c17-f32d2c7a7cd4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129010,12 +129010,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87a090af-9e7b-4c41-a42a-86f77ca2780a", + "id": "985668e2-a122-451c-8950-68d938c888b4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129095,7 +129095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "906ccc35-c976-44c6-a794-62cdb1d1ae1d", + "id": "db1e551f-1807-4104-8b50-e839624ceecd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129170,12 +129170,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27a7989a-4eb3-414c-9614-155c54ed9ada", + "id": "7ed2433a-4fb4-4ae0-8abf-648d2af689ca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129255,7 +129255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86c592c5-e007-4739-ab6e-4da8617528bc", + "id": "2d0a554e-68b6-4957-a911-4244ace69c5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129330,7 +129330,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -129341,7 +129341,7 @@ } }, { - "id": "c224661d-7337-4770-82cd-a6a2e8f27bb9", + "id": "c4034b83-8cf4-43b4-a700-3fc3a7f472ab", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -129378,7 +129378,7 @@ }, "response": [ { - "id": "518599c9-20b6-4be2-a4e2-8ed083212a6c", + "id": "74c3b07a-dbee-4a67-a7b2-c6c35086fa60", "name": "SOD policy ID.", "originalRequest": { "url": { @@ -129417,12 +129417,12 @@ "value": "application/json" } ], - "body": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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": "a0ce1f45-25a2-4598-9e0e-be08fa52599e", + "id": "4c0d544e-d0e1-4033-a22e-8ed6116513a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129461,12 +129461,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4643181f-6bfe-4edd-9c7f-a01cb0d8a243", + "id": "bbac454c-96da-43fb-a8f8-3fa06f4fad63", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129510,7 +129510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3c637fd-972b-4f6a-a93f-e09f973a12a7", + "id": "6c29c8a2-a6a4-46e6-8281-7faf477011f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129549,12 +129549,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f68b5c68-2bfc-49b0-bbc2-b8eaa60e0633", + "id": "46898586-7e68-4e59-981c-94374d18c48f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129593,12 +129593,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c03a1344-02c9-4af8-828a-91dd4c73bc05", + "id": "d8399034-e630-49ab-8489-847c76b35ea1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129642,7 +129642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e21babcf-ab56-4e63-983e-9944ce45444a", + "id": "345e1868-8fa0-4a90-b036-d47639f16e51", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129681,7 +129681,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -129692,7 +129692,7 @@ } }, { - "id": "591682d7-8018-4cba-8eae-ae54595fe7ac", + "id": "d0c00ca6-d5da-473d-b191-9a20bb1a22a9", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -129731,7 +129731,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -129742,7 +129742,7 @@ }, "response": [ { - "id": "33f6a9c9-ec37-482a-9a4d-a2f22d7d90f9", + "id": "2209eaab-1f1e-4a7d-a633-ccd9323f4551", "name": "SOD Policy by ID", "originalRequest": { "url": { @@ -129777,7 +129777,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -129794,12 +129794,12 @@ "value": "application/json" } ], - "body": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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": "cf20231e-67f7-4a33-bbb5-6f635b863916", + "id": "3f9b0b5a-e0dc-470d-90e6-aa30e2440d05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129834,7 +129834,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -129851,12 +129851,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b64d4023-3580-42fe-ac10-daebb2ec7282", + "id": "9f701cac-23ed-439a-987a-76c6d0cf41ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129891,7 +129891,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -129913,7 +129913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bdbab07-d1b0-4d1d-acd0-4daf977c5691", + "id": "a8793827-95c1-43c8-ba41-d75c9d2c2ce6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129948,7 +129948,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -129965,12 +129965,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b60dfdcd-027c-49bb-a64f-d4fbe06396c8", + "id": "119d06e4-41a3-4c61-8580-5658ebd7ddda", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -130005,7 +130005,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -130022,12 +130022,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98955c41-71db-4948-80cc-1b42499e7cb6", + "id": "dec82f31-a5e8-4836-8184-75c71d8d9589", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130062,7 +130062,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -130084,7 +130084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f90edd6-3506-4ae3-a049-9ea821b8079a", + "id": "985757c3-7b24-4590-8d84-20c75b1b765b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130119,7 +130119,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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", @@ -130136,7 +130136,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -130147,7 +130147,7 @@ } }, { - "id": "39f1b2e5-3e7e-451b-94ea-da4e7abb5f3c", + "id": "10488126-27d5-410d-9da6-9b5e78c04c3d", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -130194,7 +130194,7 @@ }, "response": [ { - "id": "3ed4c3d1-cf2e-41aa-a1b8-fb1ac62b5c8c", + "id": "4feba7c2-dbe0-449b-86c9-dfe01c2018bf", "name": "No content.", "originalRequest": { "url": { @@ -130238,7 +130238,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b8884275-8634-4079-beee-df461b6d1062", + "id": "2f92b5a6-63eb-4fa9-856d-dadcdbb473e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130287,12 +130287,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c3dfbc2-8398-4031-9379-147ba5efd8eb", + "id": "edbc2e8d-3c0a-498a-829c-0df3cae9cc2b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130346,7 +130346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2198feca-bb09-4ecb-922d-f3c9789ee506", + "id": "b7c871a7-6571-44da-b843-602fa9b177f5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130395,12 +130395,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5f515ce-8e57-4271-bc2a-c9c71c5d70b7", + "id": "875c3472-fd73-471e-a113-34498285fff7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -130449,12 +130449,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "890a8ba9-34ba-4ffe-b822-c4b83e8c5cb1", + "id": "e4adf2a4-d30f-4292-bd9c-a51dd54d801d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130508,7 +130508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0f62075-dbd9-4c16-942c-283bf530292b", + "id": "f9c4d70b-1f33-4519-8a2f-dcc5af474601", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130557,7 +130557,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -130568,7 +130568,7 @@ } }, { - "id": "88166dd9-ae4b-41b5-a6c6-b122ba9251a8", + "id": "75e9f745-70e6-47bc-bf50-08f0de434b30", "name": "Patch a SOD policy", "request": { "name": "Patch a SOD policy", @@ -130618,7 +130618,7 @@ }, "response": [ { - "id": "83cd8149-d070-4962-8588-221013420ae8", + "id": "84d19620-a07e-440f-b88d-23dece84b166", "name": "Indicates the PATCH operation succeeded, and returns the SOD policy's new representation.", "originalRequest": { "url": { @@ -130670,12 +130670,12 @@ "value": "application/json" } ], - "body": "{\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\": \"NOT_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\": \"IDENTITY_REQUEST\",\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\": \"ROLE\",\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": "e3e0ca1a-a24a-4576-bcdf-8d8326f81e62", + "id": "ddf71140-3ff8-4a08-b8bf-a60880a50e8e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130727,12 +130727,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f194e149-d054-42ad-a57d-5f8e9035613e", + "id": "77c5f690-1b44-4919-95ae-bb74eb32299e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130789,7 +130789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7512695d-423f-45c4-a71a-e74b81b09d4b", + "id": "4f661dd6-3eea-4502-ad77-ef7776d32798", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130841,12 +130841,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b98a5c6-8491-4c85-9526-809f811f7eaa", + "id": "c522bb81-b515-4a34-abed-7ed1120efa64", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -130898,12 +130898,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eaf1cbec-8b02-43b5-8bc7-35e711f5b8f6", + "id": "95dfbda9-5e2a-4401-a082-d45f3633e4d1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130960,7 +130960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e000c56b-6aca-4c6a-b545-1e4b45c33901", + "id": "b627dd26-0a69-459c-8479-07b3b4c6e388", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131012,7 +131012,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -131023,7 +131023,7 @@ } }, { - "id": "c6f6b207-3ae2-44c5-938d-a3ba0da44c7b", + "id": "7201b600-bb21-46e3-8cca-cf5f12e92ec2", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -131061,7 +131061,7 @@ }, "response": [ { - "id": "cd320c48-cfa1-4d64-be9c-dbab15451d5e", + "id": "45df222b-f043-4d81-b256-da3e9d9c4e6c", "name": "SOD policy ID.", "originalRequest": { "url": { @@ -131101,12 +131101,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\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 },\n \"recipients\": [\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\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\": \"WEEKLY\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cf34baa8-59b4-4bbb-b947-c6c9fc16c80d", + "id": "1ce9d981-6a3c-4a91-9273-acd3b4e9ef96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131146,12 +131146,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bfac1162-5411-49e6-9954-399c64f33e31", + "id": "702a8bb3-56a5-44c8-96e8-299bd079055d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131196,7 +131196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76ac3930-cd4e-4b7e-847d-2ea9521884b1", + "id": "ebbc5d3c-3673-4bd8-af63-a592cc2e641b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131236,12 +131236,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c16649b3-baf0-4aa5-9ec1-f0aa27ba376e", + "id": "4f0fc1c9-c798-4866-bc67-ef2feb06bb8a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131286,7 +131286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c85a330e-b3a5-4881-b77e-9075cbf489f2", + "id": "5ec9b4f9-fed7-46fa-af8a-1373403f5ae5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131326,7 +131326,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -131337,7 +131337,7 @@ } }, { - "id": "a95f6528-33d3-4dc3-8083-84319f4da20e", + "id": "fb2a6cf6-fe21-43bb-8519-7748f69a1ecd", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -131377,7 +131377,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\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 },\n \"recipients\": [\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\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\": \"WEEKLY\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131388,7 +131388,7 @@ }, "response": [ { - "id": "a3aab179-5204-4f19-b585-98d702cf800c", + "id": "214a83bf-0981-4a05-ae26-559fe002bd72", "name": "SOD policy by ID.", "originalRequest": { "url": { @@ -131424,7 +131424,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\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 },\n \"recipients\": [\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\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\": \"WEEKLY\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131441,12 +131441,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\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 },\n \"recipients\": [\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\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\": \"WEEKLY\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ff16fcf-0a96-4ce2-a2fa-849f89442b41", + "id": "70aa2751-b595-4530-ac74-1840b134166b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131482,7 +131482,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\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 },\n \"recipients\": [\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\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\": \"WEEKLY\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131499,12 +131499,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c197ee1c-46c5-4db1-91c2-8bd018ee4230", + "id": "7c6ea02b-e6b1-4fe5-af45-b70fb23c09ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131540,7 +131540,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\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 },\n \"recipients\": [\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\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\": \"WEEKLY\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131562,7 +131562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91e4cd15-c114-450a-9cb2-a15ec2a3a4a3", + "id": "007051b9-3c19-4210-87b0-8730de07f381", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131598,7 +131598,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\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 },\n \"recipients\": [\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\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\": \"WEEKLY\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131615,12 +131615,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8271297d-560e-45df-a515-295aa1cc89cd", + "id": "eb409d72-0b69-466f-8785-c64b1caf6136", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131656,7 +131656,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\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 },\n \"recipients\": [\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\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\": \"WEEKLY\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131678,7 +131678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da327300-8dbd-438a-a897-341d1abe39d6", + "id": "2ca05690-38d3-4406-a1ad-98fb510d0a2b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131714,7 +131714,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"schedule\": {\n \"type\": \"DAILY\",\n \"hours\": {\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 },\n \"recipients\": [\n {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"WORKGROUP\",\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\": \"WEEKLY\",\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\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"TAG_CATEGORY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"emailEmptyResults\": \"\",\n \"creatorId\": \"\",\n \"modifierId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131731,7 +131731,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -131742,7 +131742,7 @@ } }, { - "id": "a2ca8693-5b10-4f8b-b432-0c05d9594bff", + "id": "10ee322f-22f8-4eab-89a8-972ea92d521b", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -131780,7 +131780,7 @@ }, "response": [ { - "id": "d6dd2e65-fd33-403b-8196-e622870abf1a", + "id": "3a4c0a1f-3730-455e-9bb4-5350464f3d9f", "name": "No content.", "originalRequest": { "url": { @@ -131815,7 +131815,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ab939d06-4421-43c4-a3af-8eaf99e59178", + "id": "451c992c-d10a-4aa8-82df-2841b6e85764", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131855,12 +131855,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c190f78c-b416-4c60-892c-84e9188d97f4", + "id": "b8739d6b-9a4a-4fa0-92ea-fd16aec746f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131905,7 +131905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1767c25a-6652-4b73-a398-4e2ee3c63413", + "id": "f97fa886-eee3-45f0-997e-4b397f3bb27e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131945,12 +131945,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e1522eea-4fce-4531-90a5-5556116c1679", + "id": "2e1279d2-774b-42ed-95f2-0c17a889572c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131990,12 +131990,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db66e328-b216-4b32-b28a-d261b6a650cd", + "id": "edfa8942-882d-4796-92d2-397b767ad813", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132040,7 +132040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90ff85e0-7a0b-4ffa-83e1-994c2374e3a5", + "id": "735da53c-119a-48ee-b3dc-b989d7baf169", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132080,7 +132080,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -132091,7 +132091,7 @@ } }, { - "id": "bf6b7d72-c47a-462f-918a-de8154748ea1", + "id": "2872cd90-730f-4dbf-8287-040c86f85976", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -132130,7 +132130,7 @@ }, "response": [ { - "id": "bd91a5c7-ccd7-46a9-a347-4da1c3a9469c", + "id": "b3284f73-2fb8-4067-b03f-be7de1093b32", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -132171,12 +132171,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"PENDING\"\n}", + "body": "{\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c158b369-9c14-4b3e-999f-26c49e4c2b0c", + "id": "85dc1222-7d21-4d52-b7bf-8ac038f1fbc9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132217,12 +132217,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b0d7caf6-8227-4444-90bf-1e7f254300d6", + "id": "5bddb058-545b-4f97-afc5-c2491d069d6e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132268,7 +132268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47c1f1d1-8d76-4377-9e37-f4fc3358d904", + "id": "08ba4104-dc25-4410-80dc-adcaed2a06f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132309,12 +132309,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "45c8e1da-77d4-471e-b2b7-1f1be651dba3", + "id": "455ba7eb-44a7-4b8b-80d7-e5d4e615e179", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132355,12 +132355,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "13c2d489-625c-4a33-a391-b68a2f39833d", + "id": "1b6a5fa0-28c9-4e84-8bad-3087a88c89b1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132406,7 +132406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dbba28e-7754-46ec-a4b5-47750cca8d9e", + "id": "3d130919-fa99-4fa5-81fd-b1e794a467fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132447,7 +132447,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -132458,7 +132458,7 @@ } }, { - "id": "7112889d-7f9a-47eb-8772-1b030d99f508", + "id": "90388e69-287e-4c42-84e0-235036add4d7", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -132496,7 +132496,7 @@ }, "response": [ { - "id": "d9b80c7b-8c0a-40b1-9488-ca8371e03fcc", + "id": "edeaccfa-d839-460c-abe5-58b224591467", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -132536,12 +132536,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"PENDING\"\n}", + "body": "{\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eccd13ef-5d3d-4996-b3b5-82af2cee0b7b", + "id": "a2e9d6d9-b707-4b82-a278-bf80ca47f8a5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132581,12 +132581,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec8e5564-33da-4fcf-9f2f-3cf71c845b74", + "id": "490c7b03-1740-445f-9a95-48004c7aea9a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132631,7 +132631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dbbb660-228c-4e87-8310-a9b270b2ded2", + "id": "04b3c9c4-16fc-4598-a5d8-dde27a4bf4a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ef2673aa-26e7-40de-8973-ee82932e96d8", + "id": "009721f7-7904-46b9-9bf4-7f8ce04160c8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132716,12 +132716,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca64a210-91c0-444b-ae79-2dc40cb7aef7", + "id": "08725774-1228-46c8-ae32-728b938f5dea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132766,7 +132766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23fba814-c107-46ae-9bae-98c4c0cb4e45", + "id": "ee725751-9f5c-4477-8837-d2a2fa7de04c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132806,7 +132806,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -132817,7 +132817,7 @@ } }, { - "id": "3b8a13d3-9750-4ec0-8da2-02157aa59e17", + "id": "ab19f968-11e2-40ce-bdbc-2c42ec23758a", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -132855,7 +132855,7 @@ }, "response": [ { - "id": "3fa5e5ad-f09d-4516-bbe3-0bc36985089d", + "id": "c9fa9476-36a8-4cc9-97a0-9e05c4220665", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -132895,12 +132895,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"PENDING\"\n}", + "body": "{\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ba3e7ee6-4a41-4530-9853-e28db0768719", + "id": "9156d866-7911-4894-946b-fda7814ad0ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132940,12 +132940,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4336358e-e3be-4ffb-b28e-e7b84cbf825a", + "id": "505df9c6-5fe3-4b41-9b23-b1b8ada8ff1e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132990,7 +132990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b026b16-f844-4457-978e-4ce89bc41e3b", + "id": "4102b44c-d610-4fb9-b9a2-d03a4a1dea2c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133030,12 +133030,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c424e555-98c6-468e-8e35-8439ef698f98", + "id": "4196494a-fd37-4766-b66e-b2c5444ed7c5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133075,12 +133075,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26cac878-ab57-43a2-aa45-fdc77cdcea5e", + "id": "6c9a7ad1-5bd8-48f0-96bf-fce3f9cc57b9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133125,7 +133125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "299941ba-7493-43ed-8a8e-7f9c4bfe4bba", + "id": "563cbb08-5c5f-4b3d-83bf-7428a8d672b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133165,7 +133165,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -133176,7 +133176,7 @@ } }, { - "id": "3814637b-7595-4815-9c7b-71363ad54768", + "id": "b11683f5-cb39-420d-acff-695b54a34cbb", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -133219,7 +133219,7 @@ }, "response": [ { - "id": "81fbec1a-821e-4467-bab2-4c07de8b1672", + "id": "2b9f39bc-fdbc-41a5-98c2-198d89acaf25", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -133271,12 +133271,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"PENDING\"\n}", + "body": "{\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c8df70a-86e2-4cec-99ea-943aa2735c26", + "id": "39f0410e-a52d-4f79-ba69-1b46a69b1502", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133328,12 +133328,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c093324-9776-4d36-b6ad-1e2efecd4d8a", + "id": "0eb515bc-f77d-47f0-9e61-a4c1c2536f0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133390,7 +133390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5f253ed-495d-42f8-b758-ba2849b58e23", + "id": "397509ea-8534-44f9-828b-50768bcae537", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133442,12 +133442,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4714650-e5a8-4cc1-99a3-ef479cefae9b", + "id": "866b8c3b-bc64-4249-a638-8b08af055aba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133504,7 +133504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "279b43aa-7069-4aa8-b2eb-121000d6b782", + "id": "69afe924-dd99-4751-b06c-c36d6b2f538f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133556,7 +133556,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -133567,7 +133567,7 @@ } }, { - "id": "39165f55-0aad-4d52-93cc-07f0e4da752e", + "id": "1b6e6af4-760a-4e16-b864-e8b958a8072b", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -133596,7 +133596,7 @@ }, "response": [ { - "id": "eb3b331b-3530-4e0c-b861-68be38dc9375", + "id": "919de885-5daf-4d67-b4fa-4821004b897e", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -133634,12 +133634,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"CONNECTOR_SCHEMA\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"PENDING\"\n}", + "body": "{\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\",\n \"status\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8430c847-b3d1-42c1-900f-6111313f8c5b", + "id": "c4bbb366-b68a-4268-a60c-8062d55051b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133677,12 +133677,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c7a7117b-f10d-494a-9c0d-3ef0f02f388b", + "id": "489e6607-7ea2-46ae-b354-9c010ff81978", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133725,7 +133725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67d1a970-75e1-4ee5-8384-f3c598f9dced", + "id": "ab35ee0b-95e1-4ad9-b916-186e0ee92f90", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133763,12 +133763,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c96fee75-7bbc-4d63-a1c8-f44118ee33a5", + "id": "28132d1f-7dd6-4fcc-855a-f21ae5ddd81d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133811,7 +133811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c27ca209-f48b-4e84-8b99-1b2a9d2599a5", + "id": "5d702406-7f0c-4540-aabb-440fe7e50e44", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133849,7 +133849,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -133860,7 +133860,7 @@ } }, { - "id": "846f2e1a-201b-4b8a-9f12-d82813a9dbed", + "id": "d52796b3-72ea-4fb4-af48-913c67a5b70b", "name": "Download violation report", "request": { "name": "Download violation report", @@ -133898,7 +133898,7 @@ }, "response": [ { - "id": "d47e48ac-a13f-493c-9327-a35c26784b34", + "id": "7bb0fa28-a57c-4ad0-bf78-ae975affc76f", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -133943,7 +133943,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d96a2f82-0bd5-425a-84b2-5604b7206466", + "id": "e2776cbe-fe6b-45d6-8416-0a0a10911cf7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133983,12 +133983,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5d24949-1f49-4459-b245-8bf1a7543298", + "id": "135d22e4-b8e4-4ce7-8266-b758d6f98599", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134033,7 +134033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c64cae1-76dc-49a2-ae61-f9debbcf98e9", + "id": "77643886-5abf-4f74-b1f3-56ea8ca98c44", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134073,12 +134073,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "238a5ee8-c251-4b65-ae98-6005f5e342f7", + "id": "412bd7c4-8d97-4745-86bf-ed09ef98db7c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -134118,12 +134118,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c40d6880-12ef-452f-aa1e-7a14d7ca4b55", + "id": "579cb655-df33-4a4a-a62d-cb09a07083ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134168,7 +134168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be25d9ab-6676-46e9-a2e0-8293a5518255", + "id": "bc3a6eeb-4d4a-4861-8504-4210d45e66ec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134208,7 +134208,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -134219,7 +134219,7 @@ } }, { - "id": "3595df6a-35ec-4184-a2d8-fc9a644400bc", + "id": "df25d627-002a-430c-806b-0ca7bfca265a", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -134264,7 +134264,7 @@ }, "response": [ { - "id": "71e1a270-14df-4eda-ab91-dfdf24f5cc2a", + "id": "c8f60c83-fbd5-4aec-87b2-38eb3b749d1d", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -134310,7 +134310,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8cc25d58-6bc3-473c-a64f-d42fb780bffc", + "id": "bfcd25f6-7de7-4b06-86aa-b256865875b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134351,12 +134351,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f98a508f-33c5-4bb7-bb1e-68f6e6a9eaf9", + "id": "fab7c260-59fc-4aea-b1d6-f938c7931432", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134402,7 +134402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5491f130-079c-498b-ba2c-55bf4685e121", + "id": "586c3153-29dc-4480-8b12-62b13b07e3ae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134443,12 +134443,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "21500096-15c0-475f-98ea-bdacbcf67d49", + "id": "3f0c3a69-6da2-4743-a871-704a7f04fa14", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -134489,12 +134489,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1d8c2781-1251-4ff9-bd00-3d54347d60db", + "id": "a8893e07-b69f-42b3-8e41-476798a08bc2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134540,7 +134540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a106b4d-ace3-459f-bede-420ddc85815b", + "id": "4c2c5298-79ae-45ba-9d58-4fae4fe6162c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134581,7 +134581,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -134598,7 +134598,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": "e95660a5-b03d-42b6-8efe-1f0fe21b9a63", + "id": "9ea9c971-df39-48b8-9f4c-faf6320c7ad2", "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.", @@ -134641,7 +134641,7 @@ }, "response": [ { - "id": "ececb2c9-478f-45eb-a95b-c3687a8a3bf9", + "id": "443f1d1a-47e5-4881-b16e-b8ca6f5357b5", "name": "Violation Contexts", "originalRequest": { "url": { @@ -134698,7 +134698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce9080c3-af2a-4c49-b4af-b27264f2d83d", + "id": "1af14ce6-30fb-4f9d-a72b-2b5435012f6e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134750,12 +134750,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "efd5dc56-f0c3-4ca3-b596-9b1754b2644e", + "id": "4cc7e6d6-8acd-44d9-ac9b-c90d2dfc4ff6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134812,7 +134812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12ac3606-af43-4351-a65c-b0ba90fcafbb", + "id": "7368e52c-e057-4860-82ba-54764889601d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134864,12 +134864,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b9ec305-9c1f-4d32-b903-6bd6bcdd5cf9", + "id": "b1ee9070-d1d9-4c21-8278-66035e27e6dc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -134921,12 +134921,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1d2646b-c566-45eb-a56d-e14e5ef8b5ca", + "id": "36974c88-c286-452d-820d-5ff4a1d72745", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134983,7 +134983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04a29968-ffc5-4c2e-bcd2-41db3ea8a204", + "id": "9ef7a625-7d37-4264-99e9-90b05fca0794", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135035,7 +135035,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -135052,7 +135052,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, mappped 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": "968b44cc-1ae3-4d93-996a-78ea27c70aa9", + "id": "695e25c5-2530-48d5-a74a-e136722385f0", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -135136,7 +135136,7 @@ }, "response": [ { - "id": "a78e3b5e-9a5a-47a0-8cdd-aa50d4f11a41", + "id": "79b419a4-0a6c-4e0b-985d-c755961563bc", "name": "List of Source objects", "originalRequest": { "url": { @@ -135229,12 +135229,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 \"CURRENT_PASSWORD\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"NO_AGGREGATION\"\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 \"connectorImplementstionId\": \"\"\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 \"SEARCH\",\n \"GROUP_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"ADDITIONAL_ACCOUNT_REQUEST\",\n \"UNSTRUCTURED_TARGETS\"\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 \"connectorImplementstionId\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35b3af71-2ee2-4a76-a736-e08f6596c8f1", + "id": "0d015ad8-cf38-46f4-b189-dc191362187c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135327,12 +135327,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a6bd5952-e4b0-4248-a894-b3accdf701a3", + "id": "60836385-42a1-41dd-867b-fb9bcd15c4bc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135430,7 +135430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "377a10bf-6207-4136-b07a-5796e7f4baab", + "id": "9888df30-0044-41dc-99ee-111160f8fcd7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135523,12 +135523,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6c41539-f5aa-420c-8ce1-82a1cd396ebb", + "id": "c83ac30b-5fa3-401b-a7ec-c057f3dd6e90", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -135621,12 +135621,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "741da77a-32bc-4b5b-9e74-76e9f083ae0e", + "id": "bd3cac3c-22ee-4f7f-a831-39c7c7187139", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135724,7 +135724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e5315bd-e6a8-4726-aef5-d53893348e7c", + "id": "eff1981b-4101-451b-b647-309590d30a2e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135817,7 +135817,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -135828,7 +135828,7 @@ } }, { - "id": "48bbf70c-ec13-4971-ba18-bbd7dd5f89f7", + "id": "9c6b177c-7cc0-4629-aeba-b1981eb7ee4d", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -135869,7 +135869,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -135880,7 +135880,7 @@ }, "response": [ { - "id": "e4145475-90ee-45ff-93ce-043faa10bea1", + "id": "66a5fe9f-33bf-4bc6-b2f6-6f1765dc0fdd", "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": { @@ -135924,7 +135924,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -135941,12 +135941,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8e2c1c73-5cfc-4ead-8ca2-477fa2faec0b", + "id": "63aca85b-9a86-410b-9b65-aee8d2c78fa4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135990,7 +135990,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136007,12 +136007,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b47569c-55d7-4c0b-a5e4-5a24808afb15", + "id": "12b3173a-725d-4783-a98d-c6f8a10ee25f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136056,7 +136056,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136078,7 +136078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35b521c9-c909-4ada-ac6e-0239402579cd", + "id": "465acb85-6577-4545-9554-424b5574e0e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136122,7 +136122,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136139,12 +136139,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2208bad8-9edf-479a-81ee-bdb3f8c24283", + "id": "59bd5b28-a74c-4c44-a321-b6b79e50963f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136188,7 +136188,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136210,7 +136210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93ac7b37-296a-4042-9b78-29f9b4cf35bb", + "id": "774d52de-4150-4340-bb57-1b0a0c3c59ef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136254,7 +136254,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136271,7 +136271,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -136282,7 +136282,7 @@ } }, { - "id": "c7aa7386-ba41-4edd-b458-592ede837dfc", + "id": "966c0e74-88e2-4e7b-93ab-c18e5da21035", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -136319,7 +136319,7 @@ }, "response": [ { - "id": "febae5d1-6d02-4da3-8fab-593dbbe858e5", + "id": "53a4f03f-3806-42e4-8c56-a14c023cd80e", "name": "A Source object", "originalRequest": { "url": { @@ -136358,12 +136358,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "beea3fe8-9a1e-422a-b9e7-6a538b4ce56e", + "id": "b22fa86b-43d5-4445-8091-59b4ca884de7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136402,12 +136402,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7a86d13-19e7-4a0c-a5fa-2a37c3db35ae", + "id": "cb733d47-8ffd-4c4e-aaac-99e007e53871", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136451,7 +136451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62a66216-4461-4395-904e-c2ce47a51b46", + "id": "aaed95eb-5938-4e2c-9c17-45347da74db3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136490,12 +136490,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d38cf22e-1ea2-43da-bba4-d556b09848cd", + "id": "e4e274ec-5dae-48fc-9fcc-42aea1ee3542", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136534,12 +136534,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5804341-bdc3-45a2-a2f3-d9fed3edd47f", + "id": "5b8d3f97-5175-4e39-b709-a6b129673baa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136583,7 +136583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28c1bb5a-ffc1-424c-9cdb-2717b8a09c52", + "id": "08556b63-3953-4a04-83f2-48436d92a5b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136622,7 +136622,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -136633,7 +136633,7 @@ } }, { - "id": "22e174d2-1ac1-4b93-9057-a34446e3fcc3", + "id": "e1a371f5-695f-49a7-95c4-7acffc2859ea", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -136672,7 +136672,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136683,7 +136683,7 @@ }, "response": [ { - "id": "47229ef3-7957-4c8f-a017-4ec476a7f364", + "id": "3c049dbf-4ea3-4181-9b99-a0b4cdc68cc8", "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": { @@ -136718,7 +136718,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136735,12 +136735,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04d6b4e8-f237-49b0-97e1-68853f0b59dd", + "id": "7c2b4233-d2b1-479a-8afe-856a9fd71d5d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136775,7 +136775,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136792,12 +136792,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "569eeb05-76d0-48c7-b788-d7b44f29e42d", + "id": "fc901a0d-b5a2-46a2-8674-a483d1a2c784", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136832,7 +136832,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136854,7 +136854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "562abbbf-1163-415e-b772-16c7c850c467", + "id": "bcd84a60-8f74-4f99-8ba8-f6ab41e270cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136889,7 +136889,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136906,12 +136906,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "395819f1-702b-4b04-b307-6bc90aac913b", + "id": "2ad84f82-0112-4f35-9b8d-ae30f211870c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136946,7 +136946,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -136963,12 +136963,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c30eea73-ecbd-4fd5-aff9-3b512439a966", + "id": "21985faf-aa7a-483b-a844-746ddcfa4f1a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137003,7 +137003,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137025,7 +137025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73b03bfe-c094-4eeb-bc39-9afc70fa0496", + "id": "6e8fcd02-8a82-4952-8997-2a59c372c911", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137060,7 +137060,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -137077,7 +137077,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -137088,7 +137088,7 @@ } }, { - "id": "53059755-1d83-4b9f-9679-3a0617f9e84e", + "id": "cca8e81c-7619-4bac-919a-92d6bf6d1362", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -137127,7 +137127,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -137138,7 +137138,7 @@ }, "response": [ { - "id": "6f4b9197-bc23-4786-a0c3-cde899d48a2f", + "id": "16995c75-1b3a-49a2-ab84-29b63fce76f3", "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": { @@ -137173,7 +137173,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -137190,12 +137190,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d62fdd0-2184-4f6a-92ba-8a7d798f181f", + "id": "f5f0d599-4926-499a-a1e6-c2369e05ebe9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137230,7 +137230,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -137247,12 +137247,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd5f46ba-774e-4a09-aab9-9c03aa68b623", + "id": "2e1cf408-9b9e-4900-be53-1d0c733a0bd8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137287,7 +137287,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -137309,7 +137309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "724ff33a-4d1e-456f-91c6-6f40b8493a7c", + "id": "840517e1-3de9-43d9-8792-656f9e4b1957", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137344,7 +137344,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -137361,12 +137361,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6dd578ad-8116-4fd5-8af5-bbd6c944d9e4", + "id": "08f3bff0-6375-4f84-b0b5-fa04e1d179ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137401,7 +137401,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -137418,12 +137418,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ebb1ea5-7fbf-43cf-b98e-5e34cc219daf", + "id": "24cb37ff-d7cf-415a-95aa-b7466deb6ea2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137458,7 +137458,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -137480,7 +137480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "429d8f62-6418-49bd-94ca-ca2da004aa14", + "id": "5fa0b345-4b07-4758-b6b9-10887db91a86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137515,7 +137515,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -137532,7 +137532,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -137543,7 +137543,7 @@ } }, { - "id": "3d3a4d5e-02ad-447d-9f88-052d917e2a3d", + "id": "8d6a3858-a7a9-4786-bf04-d5a2550db160", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -137580,7 +137580,7 @@ }, "response": [ { - "id": "82e922b6-e348-4603-a6e3-2d917f9e67ac", + "id": "57f7ccea-4b96-459a-89f3-e827606df433", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -137624,7 +137624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b154a30-1cfe-47fb-9195-f35685c3fa81", + "id": "488d57ae-57c1-4f46-aa8d-316e84a7f577", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137663,12 +137663,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ffcd239c-bc91-4fa8-95a9-0764dfbacf6c", + "id": "a3b66eeb-1e5a-4995-9363-5a2e5d6125df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137712,7 +137712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e81fed0-5325-465c-b2ad-40e0641b3819", + "id": "ccf9e675-90e6-4b43-b268-698847aacf80", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137751,12 +137751,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f7b0554-f344-469f-bcd1-a56a6f4abb9c", + "id": "2d26cfa0-ad63-4ced-b15e-957c61aecb5d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137795,12 +137795,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e0521fa-0e0c-44ce-b262-e387cfdee79d", + "id": "3994e32e-8836-4bf8-9414-a7e69b4d49c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137844,7 +137844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "612e9b14-6673-44d4-b4d3-1d203f7c1f7b", + "id": "a0781a3b-ca86-436e-8bb3-df1728d9e87f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137883,7 +137883,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -137894,7 +137894,7 @@ } }, { - "id": "b318dda7-404b-44b8-8f38-9e54216f7a74", + "id": "4a59766d-2637-44fc-832e-e364c1709309", "name": "Attribute Sync Config", "request": { "name": "Attribute Sync Config", @@ -137932,7 +137932,7 @@ }, "response": [ { - "id": "9f0c903d-4d9e-4d43-863a-c1a55a2845c2", + "id": "77b2d7cd-0a60-4b88-b6be-1c6a97b1ea99", "name": "Attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -137972,12 +137972,12 @@ "value": "application/json" } ], - "body": "{\n \"source\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"WORKGROUP\",\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": "d43ff934-e12c-4f85-b3c4-87aca2abe2ca", + "id": "20b29404-33bf-4bb8-b347-1c2a771efb74", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138017,12 +138017,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fe48b0d-72c6-4e88-9c96-4379fc10651b", + "id": "d066265c-72a0-4006-a330-f34528a98638", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138067,7 +138067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "128772ee-7933-4786-ab3f-b37054e7aa63", + "id": "2fdce5bf-49bc-451a-a88c-652d4254f3b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138107,12 +138107,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f00945e-8660-456e-9aa5-8a9a9a9923d6", + "id": "7129a00a-fe49-4127-9a62-697c6e887305", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138152,12 +138152,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb20d920-023c-4d14-8f31-76241b530a3c", + "id": "c6e05b2e-0bad-4364-bf53-15bb183bfd90", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138202,7 +138202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27b83211-f0f1-4439-b576-32fe142d114a", + "id": "605a5133-5f42-433b-a891-474b6d793122", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138242,7 +138242,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -138253,7 +138253,7 @@ } }, { - "id": "1f3bee70-bee8-4a5e-8c1d-fbf69bbe1f66", + "id": "018b9951-29d4-4f68-b9e2-3c91056fda73", "name": "Update Attribute Sync Config", "request": { "name": "Update Attribute Sync Config", @@ -138293,7 +138293,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"WORKGROUP\",\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", @@ -138304,7 +138304,7 @@ }, "response": [ { - "id": "5b9283a5-fa77-4a3e-9474-2788f91e9aca", + "id": "19106ab8-4570-47d2-9589-5b8f92ed4293", "name": "Updated attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -138340,7 +138340,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"WORKGROUP\",\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", @@ -138357,12 +138357,12 @@ "value": "application/json" } ], - "body": "{\n \"source\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"WORKGROUP\",\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": "edc95406-5b6a-45b0-9f7f-0be3e5492b2f", + "id": "326df18b-35f8-4631-85d4-4369984570f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138398,7 +138398,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"WORKGROUP\",\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", @@ -138415,12 +138415,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7c63207a-1ada-4f16-a2c4-548efaafb354", + "id": "db07a59a-0c13-4594-8699-2c3cfdb16220", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138456,7 +138456,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"WORKGROUP\",\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", @@ -138478,7 +138478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9f5dc73-0e76-4fef-aa97-86aab7232a94", + "id": "24260393-943f-45b5-9dc6-e425ee7f124e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138514,7 +138514,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"WORKGROUP\",\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", @@ -138531,12 +138531,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c080b73a-6481-4055-b96f-295965d1fc64", + "id": "b22ce211-4579-498d-8e68-4e93a56ffdb9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138572,7 +138572,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"WORKGROUP\",\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", @@ -138589,12 +138589,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5bb9b768-059e-4337-9051-be341a726a6c", + "id": "0d3db65d-3490-4ce4-88cd-087b5a77f6bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138630,7 +138630,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"WORKGROUP\",\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", @@ -138652,7 +138652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "709bce3e-c450-4adf-89d3-1420aa16d709", + "id": "bb0f12bb-b5ed-4e56-9897-b3be5b098dba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138688,7 +138688,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"source\": {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\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\": \"WORKGROUP\",\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", @@ -138705,7 +138705,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -138716,7 +138716,7 @@ } }, { - "id": "a1c5e492-1431-406b-899b-3528d5f2609d", + "id": "8edf4813-3d91-4198-b72d-6500f6716e7a", "name": "Check connection for source connector.", "request": { "name": "Check connection for source connector.", @@ -138755,7 +138755,7 @@ }, "response": [ { - "id": "e6054484-00af-40d7-a95e-53403f5f7e2f", + "id": "8d977de3-4bb5-4710-ada3-21e76b0dde71", "name": "The result of checking connection to the source connector with response from it.", "originalRequest": { "url": { @@ -138801,7 +138801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6f5f95c-a53a-4763-bdc1-7dee991a60ce", + "id": "9260dec9-19b7-4636-a318-bfb5fcb47a2b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138842,12 +138842,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e5275c2-0706-4b1c-81ad-a6a0ba4ba5fd", + "id": "00f382d5-09a1-4bc7-a1c6-44ccb68d3c07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138893,7 +138893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6fb9d33-89bc-41d7-b973-3c4c0aa70a1d", + "id": "e90abe05-083a-40e1-a1b7-c8e4518014d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138934,12 +138934,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "38fec1b3-29b6-4da3-868f-9828d70c0049", + "id": "32421c4e-2c84-4499-b84f-0af66ed7cf8a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138980,12 +138980,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f184bc8a-7366-4753-b8fd-9ce965b956b6", + "id": "be2d1f49-6f3c-4843-8e99-c0e90284cae8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139031,7 +139031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e51932fd-a0b5-4010-a031-a0b4c73c9659", + "id": "f7b176da-eb50-4345-bb27-f886e9d6444d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139072,7 +139072,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -139083,7 +139083,7 @@ } }, { - "id": "60ebf11f-6136-4199-9668-a4d3aadaa33c", + "id": "e05cf4c8-e482-4b70-8fd0-d30030867e34", "name": "Peek source connector's resource objects", "request": { "name": "Peek source connector's resource objects", @@ -139135,7 +139135,7 @@ }, "response": [ { - "id": "a5b44928-db43-4c75-b3af-d6472d35d237", + "id": "e276434c-62c5-4607-b6af-c6fa77e38dce", "name": "List of resource objects that was fetched from the source connector.", "originalRequest": { "url": { @@ -139194,7 +139194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18466a0d-bd6f-46de-a53a-9733703df7e1", + "id": "e3bfc5ac-1509-462e-900c-38b9bbd28fdf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139248,12 +139248,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "18a42b0e-f3a2-484d-abb2-5e1717b1d288", + "id": "05941481-884d-46cd-8aaa-2615c7e5363f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139312,7 +139312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50dc8029-2139-453f-ae11-23291540fe59", + "id": "5e23772c-7d70-47ad-b287-c40feb6ca046", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139366,12 +139366,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "78005fc2-e274-42d0-b42e-8aa401f93fc8", + "id": "4c1855a5-0ee7-42ba-b3b7-bf64935c49e0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139425,12 +139425,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd59778a-69eb-4368-a815-cf4099d97fc7", + "id": "e85ecc6a-3a62-423d-8a2d-1149ad2d65ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139489,7 +139489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a77e335-bdc5-46e8-8d19-cb8a2a775376", + "id": "1680b3c4-5d8d-4f87-b7d2-b1bb059945e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139543,7 +139543,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -139554,7 +139554,7 @@ } }, { - "id": "25152c82-4db8-4d59-992a-f20d755db085", + "id": "6bef28ba-b802-4f3f-bbda-c11b3ad013ef", "name": "Ping cluster for source connector", "request": { "name": "Ping cluster for source connector", @@ -139593,7 +139593,7 @@ }, "response": [ { - "id": "cf47dc8b-c5cf-4325-be54-0532e5a8d485", + "id": "b7f3b30e-f9d2-4f46-a058-a77ae9a7bcff", "name": "The result of pinging connection with the source connector.", "originalRequest": { "url": { @@ -139639,7 +139639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99d95922-7a3c-4306-947b-3314279ca024", + "id": "c46883fa-e52f-472d-8f08-2be8f24a2e59", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139680,12 +139680,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39bfdc06-a583-4210-8a74-aa364471f682", + "id": "c546ce62-1c31-4bf8-af71-cb8b2e12ff25", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139731,7 +139731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c2bf7bd-581f-43e2-a6c0-963c543f5579", + "id": "f6cb0444-dcd8-4ec1-b415-8664fb9320e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139772,12 +139772,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4bae47f-53a0-4d52-bc1f-59097058113f", + "id": "87739130-f4ee-4920-86ea-8c24d6e8ee64", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139818,12 +139818,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d756cf25-3706-4b33-bfec-e99bbe0e2532", + "id": "7abd1fa0-9c3b-4035-b1bf-604dcf49f550", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139869,7 +139869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0daf139d-b673-4e88-9e3e-c010af053220", + "id": "386dde8a-ccd0-4b4c-a768-b792d225315f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139910,7 +139910,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -139921,7 +139921,7 @@ } }, { - "id": "d6227ff3-5dc6-46ba-9051-1ec9ab8f4536", + "id": "e62fb9fd-dc85-4b86-9d46-0c55d9fda549", "name": "Test configuration for source connector", "request": { "name": "Test configuration for source connector", @@ -139960,7 +139960,7 @@ }, "response": [ { - "id": "e67a22c3-f7ed-44aa-b632-68e04d73583d", + "id": "77a2af04-d47b-4487-a649-4e5b8937fad6", "name": "The result of testing source connector configuration with response from it.", "originalRequest": { "url": { @@ -140006,7 +140006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "048846c2-1071-4a12-9c7f-93a66106ca67", + "id": "efbd0cda-5d98-480f-9a6f-238f642f0ee4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140047,12 +140047,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f7bff97-190c-495f-afe6-34ddfa0c4899", + "id": "71f7bdb8-2873-48a4-849f-e41b27ca92ff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140098,7 +140098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c801b294-7f86-4879-bcfc-7917b4f14961", + "id": "5ba25ce0-d5da-43fa-af51-7a81ea5828d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140139,12 +140139,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1479ef9-b9da-4211-8c8d-13803bb14369", + "id": "9e7c57e1-005c-4ff1-9f3e-c2e7fdbf9f82", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140185,12 +140185,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d2e1a262-9346-494e-87e2-b8bd7494154b", + "id": "ef91fb85-b9d3-4749-96b2-3726b2550ec4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140236,7 +140236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee4d32d8-daf5-4e74-834a-7a6fe69454fb", + "id": "2d62837d-e41d-4b9e-825b-8285d5ab356e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140277,7 +140277,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -140288,7 +140288,7 @@ } }, { - "id": "4bf069b6-74e0-4b84-abc9-a8cabc461396", + "id": "5eeeadee-d24a-4608-981f-7286b4d02298", "name": "Gets source config with language translations", "request": { "name": "Gets source config with language translations", @@ -140314,7 +140314,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "no" } ], "variable": [ @@ -140337,7 +140337,7 @@ }, "response": [ { - "id": "57f88bd7-c8b2-4f41-8d65-002301662032", + "id": "6a5ea5e1-70cd-45ab-bbfc-ffeb235caeea", "name": "A Connector Detail object", "originalRequest": { "url": { @@ -140358,7 +140358,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "no" } ], "variable": [] @@ -140393,7 +140393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bafb071a-fc03-436e-89ee-2d631bd114de", + "id": "f7c87ca1-6753-4e10-822d-458a562167ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140414,7 +140414,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "no" } ], "variable": [] @@ -140449,7 +140449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9239f348-2ee2-446f-8705-637b8860d5b2", + "id": "801bcddc-d2ba-492e-8a63-c9e4631b83d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140470,7 +140470,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "no" } ], "variable": [] @@ -140500,12 +140500,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df348921-045a-430b-b94b-df5e20c51a27", + "id": "14d45e68-9389-4708-9c63-3009432d3f19", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140526,7 +140526,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "no" } ], "variable": [] @@ -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\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3665b356-66ff-4693-a187-6418fad846d1", + "id": "5323356c-029a-48ad-87d7-18cca99f3989", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140582,7 +140582,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "no" } ], "variable": [] @@ -140617,7 +140617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3ac7c67-0e1b-48ef-aef8-dc54b3f7ca21", + "id": "bf6c605a-a99c-4243-920e-f594312012d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140638,7 +140638,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "no" } ], "variable": [] @@ -140668,7 +140668,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -140679,7 +140679,7 @@ } }, { - "id": "88672591-98fc-4ae3-890c-8260a1c01b15", + "id": "7f7a9a86-1b36-47f8-938f-51103f16e813", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -140717,7 +140717,7 @@ }, "response": [ { - "id": "956990d4-c1bd-424c-8a55-05ca94542865", + "id": "b2224b3a-1fae-4e6a-9b08-0bd23515750a", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -140757,12 +140757,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CHANGE_PASSWORD\",\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\": \"ASSIGN\",\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\": \"UPDATE_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\": \"ASSIGN\",\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": "f929cddc-5a94-495b-8afd-bf48654e71e0", + "id": "a8031854-c787-49fa-a260-fa267f6595e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140802,12 +140802,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74268e98-b373-4d97-afff-5b68fc6f2e10", + "id": "32141b0f-0ab8-40cc-b9b4-e80024d88dd9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140852,7 +140852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "263649fb-9e45-4ee5-8566-2eb61480d44e", + "id": "6f113e39-9905-4f15-8f33-e4277703e853", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140892,12 +140892,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "473518ce-efd0-4e3e-be80-2c0b1d046d5b", + "id": "0aa8966a-9c5b-4a03-88d1-c7bca6aa14b1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140937,12 +140937,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9bcb2ece-55a3-4564-a029-3fd759450fd9", + "id": "93cd0938-1870-412c-9d09-423ac0e0e39f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140987,7 +140987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e9ba4ef-424d-4b90-aecd-2457e54540cc", + "id": "90a4bf64-53c1-4de9-b001-c4c361643e0e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141027,7 +141027,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -141038,7 +141038,7 @@ } }, { - "id": "992b0870-48a0-42e2-8f90-e7a6ad42218b", + "id": "44dd971d-256e-4f57-80ed-bd74d4f08a98", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -141078,7 +141078,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -141089,7 +141089,7 @@ }, "response": [ { - "id": "77079d62-6aca-4173-ab5d-db5ac38631d4", + "id": "5d727e50-b0bf-405a-aba9-8a9fb06124bc", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -141125,7 +141125,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -141142,12 +141142,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "154b67dc-3777-4b0f-8a3e-be9b6dbe1e62", + "id": "d54a1150-bf27-4755-936d-52b1079fe9f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141183,7 +141183,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -141200,12 +141200,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "514d3294-1608-473c-97f8-e2eb90580072", + "id": "668c68c0-de51-4929-a669-804cbecc58c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141241,7 +141241,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -141263,7 +141263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43cbcce5-e83c-48d9-8ea5-00aab250d639", + "id": "01b1641c-ef64-4eea-b244-a70b6558c791", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141299,7 +141299,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -141316,12 +141316,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7db2a2aa-60b1-4f5f-ab03-566f4cbb9773", + "id": "32fc6399-ea87-4eef-a37b-6bf2764f6bec", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141357,7 +141357,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -141374,12 +141374,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f762563-435d-49c0-9649-37bc95caac9c", + "id": "7ccab398-a202-43ee-8095-abfc44bec48a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141415,7 +141415,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -141437,7 +141437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b344d288-f221-4950-a659-cbea1ceb10f1", + "id": "aa512983-821a-4293-8830-56d44a21718b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141473,7 +141473,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -141490,7 +141490,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -141501,7 +141501,7 @@ } }, { - "id": "e8d2c923-73be-4860-a253-79a93b5f911b", + "id": "ac8f9d18-c7fa-44b3-891f-d19b7107b4bd", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -141529,7 +141529,7 @@ }, { "type": "any", - "value": "EDIT_GROUP", + "value": "DELETE", "key": "usageType", "disabled": true } @@ -141546,7 +141546,7 @@ }, "response": [ { - "id": "ac2c314c-c2f6-4c87-afc5-ac8eb821003c", + "id": "763fba80-68ac-4c51-846a-3dcad44adf7b", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -141587,12 +141587,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "067d81ac-a561-47fc-bf5c-e9aa9c650450", + "id": "c42c50fe-2f33-4882-82dd-f19f8555f0d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141633,12 +141633,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a3f8182d-3cc2-40b9-b07a-aebd410cf5e2", + "id": "7643454b-ba0d-4fce-b535-36ded186ab78", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141684,7 +141684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23b46ad6-b6eb-47b2-8855-9bd1eec31691", + "id": "0068dca6-e72c-4484-8747-5723a02f66e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141725,12 +141725,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f058c10f-3d25-451d-9f09-7ae25bd0ea5b", + "id": "76840a88-c678-4239-985b-7c9c1d558f3a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141771,12 +141771,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "168871f4-9ff5-4eb7-9acd-46156e8801af", + "id": "512ad512-9abf-4fd9-96a5-1f4629b06915", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141822,7 +141822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "337e4739-d2b9-4778-96e2-3378a7c928c8", + "id": "aedb462a-f228-4ec5-b8b1-31ed5cc7ed71", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141863,7 +141863,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -141874,7 +141874,7 @@ } }, { - "id": "0e58f32b-1a9b-4ff8-a165-ae09b2cfdc01", + "id": "c5067281-0cfb-4037-a241-f63447a5fd47", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -141902,7 +141902,7 @@ }, { "type": "any", - "value": "EDIT_GROUP", + "value": "DELETE", "key": "usageType", "disabled": true } @@ -141921,7 +141921,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -141932,7 +141932,7 @@ }, "response": [ { - "id": "ab0cc5b7-73ba-4949-8000-d887ce37270b", + "id": "544d1a73-1502-4c0a-919a-0a0c3ce47e7a", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -141969,7 +141969,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -141986,12 +141986,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3491c7a6-8bb4-42e3-8ca8-2a9cd7beb010", + "id": "6b5cb306-b302-4880-8c39-09193501b057", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142028,7 +142028,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -142045,12 +142045,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8e54a2af-1088-4112-b8e0-d4e82457f5e1", + "id": "bd7651cc-f66e-45cb-a06a-1b4eb74496f1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142087,7 +142087,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -142109,7 +142109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c771e3da-2e99-4c2a-8425-f6abeabd06ee", + "id": "543fade3-e391-4172-9f5e-cda70fb9753d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142146,7 +142146,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -142163,12 +142163,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2414f727-3eb2-44cd-97f5-290fb7defc83", + "id": "3663b61a-ff6b-43f5-be77-a24eeb3cf0c9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142205,7 +142205,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -142222,12 +142222,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ff02d75-6fe2-4e5d-94a6-18c3e50ce5f2", + "id": "1db8568e-f80d-4771-a945-447a776de3ba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142264,7 +142264,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -142286,7 +142286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f02d7d85-e5c0-4de3-af8d-827e6fe7c449", + "id": "6c2eeb67-27bb-4878-b74d-0687ca9b2937", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142323,7 +142323,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "options": { "raw": { "headerFamily": "json", @@ -142340,7 +142340,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -142351,7 +142351,7 @@ } }, { - "id": "a55b67af-6d09-48f7-8d96-e63b17c8b1d0", + "id": "390c07cf-af5a-488d-bca9-65a935c811b6", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -142379,7 +142379,7 @@ }, { "type": "any", - "value": "EDIT_GROUP", + "value": "DELETE", "key": "usageType", "disabled": true } @@ -142398,7 +142398,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -142409,7 +142409,7 @@ }, "response": [ { - "id": "1156a78b-adfb-4956-8f98-fb9f660252a4", + "id": "3959d670-17da-4351-9af8-eaa173914a14", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -142446,7 +142446,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -142463,12 +142463,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"DISABLE\",\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}", + "body": "{\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"ASSIGN\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "84ac0ef7-ce70-4024-bbf3-cb466a0dfec3", + "id": "f402382e-831a-4630-a66e-582a1d817a2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142505,7 +142505,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -142522,12 +142522,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57555ace-60c3-4d71-9685-31416fde6bc2", + "id": "6bf94a23-13af-444a-bef8-d48fc69d6ab6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142564,7 +142564,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -142586,7 +142586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "946dbb6c-c3f0-4da8-a07e-c4638ada4960", + "id": "259a5e2f-1fdb-409c-846e-dcb8e89a9156", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142623,7 +142623,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -142640,12 +142640,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fe3b101-b680-470b-adf8-8752e1953612", + "id": "dbac3d29-2fef-423b-a4a3-a72c8aff347b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142682,7 +142682,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -142699,12 +142699,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e219c193-db04-431c-bc9c-ade9bbec73eb", + "id": "e4cfcc78-3430-4d7f-af2b-4748d5d4e45e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142741,7 +142741,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -142763,7 +142763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77e62b1d-f575-4b95-bd8b-a19ec44f936e", + "id": "db511681-4687-482e-bc69-915a09e8cd54", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142800,7 +142800,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -142817,7 +142817,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -142828,7 +142828,7 @@ } }, { - "id": "7c602848-cdb2-42be-a4f2-d2b8e00fbc2c", + "id": "8b4b6f31-85a7-425c-b168-7edfb88862ad", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -142856,7 +142856,7 @@ }, { "type": "any", - "value": "EDIT_GROUP", + "value": "DELETE", "key": "usageType", "disabled": true } @@ -142873,7 +142873,7 @@ }, "response": [ { - "id": "9d4603c4-e6dc-471d-b0cd-39b7ea5a0dcd", + "id": "f10d80ea-a150-4246-b3c5-4e4a5e06a183", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -142909,7 +142909,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e525c4ed-7dfc-42f7-9c6f-e92f43689bf2", + "id": "32c4b050-ab94-4331-8fa8-a067479f1fca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142950,12 +142950,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "091f5317-0d99-4e8f-9923-4fcad589b945", + "id": "8d878fef-2477-47ef-aae4-bf1f9b0d499d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143001,7 +143001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28951942-f2ff-4aed-baf8-cdcf202e69cf", + "id": "33ba0304-5e66-4773-b862-bd1f84dbc0e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143042,12 +143042,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "88697c62-ee62-4cab-88c1-50a327c4f988", + "id": "a8cad265-cbe9-40fb-a876-2376c0ad7c03", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143088,12 +143088,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "009234c1-43f2-4228-8f46-8361cbce91fa", + "id": "8e4e7f63-61b8-4261-ae73-aa6eab7489a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143139,7 +143139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8d9e492-e913-4f5d-a2cc-148da0998e1d", + "id": "b118cdb8-7257-4405-929c-a95763fe4a18", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143180,7 +143180,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -143191,7 +143191,7 @@ } }, { - "id": "f8eaed2b-d6d3-46d4-8c17-c44b0e9a4115", + "id": "76a441c9-3258-46ac-9302-432930bfbcaa", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -143232,7 +143232,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CHANGE_PASSWORD\",\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\": \"ASSIGN\",\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\": \"UPDATE_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\": \"ASSIGN\",\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", @@ -143243,7 +143243,7 @@ }, "response": [ { - "id": "32812ced-64cf-4aa1-8b3c-1eb8c9a080b9", + "id": "a3bd2ca0-0aaa-4b5a-82b8-e4ea8749a90e", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -143280,7 +143280,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CHANGE_PASSWORD\",\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\": \"ASSIGN\",\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\": \"UPDATE_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\": \"ASSIGN\",\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", @@ -143297,12 +143297,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CHANGE_PASSWORD\",\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\": \"ASSIGN\",\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\": \"UPDATE_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\": \"ASSIGN\",\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": "ed91619e-0c26-4a05-b43d-410d3c9148f3", + "id": "2c9d303c-b495-4a1d-bee3-b33835db4cf1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143339,7 +143339,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CHANGE_PASSWORD\",\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\": \"ASSIGN\",\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\": \"UPDATE_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\": \"ASSIGN\",\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", @@ -143356,12 +143356,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80c7ea31-2099-4813-8bcc-4a10343b1c12", + "id": "92c1667a-0872-4403-8cc8-3dbf74129a59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143398,7 +143398,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CHANGE_PASSWORD\",\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\": \"ASSIGN\",\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\": \"UPDATE_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\": \"ASSIGN\",\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", @@ -143420,7 +143420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c712505f-d809-48f1-a834-1df9b09d9b39", + "id": "1c7c3a70-8646-4f80-b998-5ccbca31ee10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143457,7 +143457,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CHANGE_PASSWORD\",\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\": \"ASSIGN\",\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\": \"UPDATE_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\": \"ASSIGN\",\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", @@ -143474,12 +143474,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0e02d90c-2ea0-47ec-9fc1-e3288f006b17", + "id": "d982ad4b-7176-45b5-9f08-44a6fdcd724f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143516,7 +143516,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CHANGE_PASSWORD\",\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\": \"ASSIGN\",\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\": \"UPDATE_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\": \"ASSIGN\",\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", @@ -143533,12 +143533,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc0dc454-d891-4f52-b2de-408a3f1cabff", + "id": "59210b7e-1c31-43a7-962c-9d0dd1f268bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143575,7 +143575,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CHANGE_PASSWORD\",\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\": \"ASSIGN\",\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\": \"UPDATE_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\": \"ASSIGN\",\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", @@ -143597,7 +143597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b86b74a-6fdb-4148-b61b-e8e223423fb5", + "id": "cbbf3c62-ea91-469b-81d9-8b55547df2e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143634,7 +143634,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"name\": \"\",\n \"description\": \"\",\n \"usageType\": \"CHANGE_PASSWORD\",\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\": \"ASSIGN\",\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\": \"UPDATE_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\": \"ASSIGN\",\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", @@ -143651,7 +143651,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -143662,7 +143662,7 @@ } }, { - "id": "4646de87-b4ea-46ec-9fde-5deabb43e5a8", + "id": "c1e74332-f130-4eec-be91-80c07cd4b81c", "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.", @@ -143707,7 +143707,7 @@ }, "response": [ { - "id": "7b0b0568-0165-468f-99d0-4ab5db4ae517", + "id": "bac26e87-6c8f-4b4d-ba73-7d26e837cedf", "name": "The Schemas were successfully retrieved.", "originalRequest": { "url": { @@ -143757,12 +143757,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_GROUP_PERMISSIONS_PROVISIONING\",\n \"DISCOVER_SCHEMA\"\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 {\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"GROUP_PROVISIONING\",\n \"DISCOVER_SCHEMA\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"AUTHENTICATE\",\n \"SHAREPOINT_TARGET\"\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\": \"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 {\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"CURRENT_PASSWORD\",\n \"COMPOSITE\"\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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3da67f8-0f91-4ce8-add5-f30287e7c6e3", + "id": "73af29f2-a800-4153-a4a1-31d4fa7d7d82", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143817,7 +143817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc9f5da9-41e7-430a-90bc-add8b8758cec", + "id": "169f4a1f-bcbc-4182-97e5-b7e5437daa76", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143867,12 +143867,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "95691e86-2174-448c-8399-4b30f5f5f93e", + "id": "1988ccf7-0075-40e7-adb1-f81911a13c6e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143922,12 +143922,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6dd43342-944f-435e-94f3-90cb1cc43bd1", + "id": "d1799b8d-9ebf-4278-a85c-27f426dc63df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143982,7 +143982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97b04dd4-c04e-40db-9a48-79fad2f1d271", + "id": "547da0f2-fe9a-4d30-9eae-784c37e0fcd0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144032,7 +144032,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -144043,7 +144043,7 @@ } }, { - "id": "59fe02cb-dd98-4f43-89a5-016ce9052a42", + "id": "8c817c56-7342-4426-8975-476f55716376", "name": "Creates a new Schema on the specified Source in IdentityNow.", "request": { "name": "Creates a new Schema on the specified Source in IdentityNow.", @@ -144080,7 +144080,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -144091,7 +144091,7 @@ }, "response": [ { - "id": "0c22c076-c602-4e5c-a7a3-fbc57d1d3e1d", + "id": "23e6f104-f075-4e30-b511-22d74c33b4b2", "name": "The Schema was successfully created on the specified Source.", "originalRequest": { "url": { @@ -144127,7 +144127,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -144144,12 +144144,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c651c50b-8552-4336-b4fb-d22bf5f0c44b", + "id": "1a885108-4204-4334-8f56-a11ba12a7008", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144185,7 +144185,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -144202,12 +144202,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "925522a1-1c78-4e2f-9ab8-a306fd26f92e", + "id": "ec935e07-b962-417b-b0b5-ca74cd72b828", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144243,7 +144243,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -144265,7 +144265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "706a7887-3d76-4167-9127-e4c243698206", + "id": "87675581-daa9-4ae6-afd0-4c115a4509f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144301,7 +144301,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -144318,12 +144318,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0fb22fda-5f43-412a-a127-ee9a7bce6331", + "id": "ccc83c58-d02b-415e-860c-630f1deac67a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144359,7 +144359,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -144381,7 +144381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba928ba3-d6a1-4792-9dd2-c783ce7f422c", + "id": "10970870-cbbe-4aa4-b74f-077cb1c06dcc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144417,7 +144417,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -144434,7 +144434,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -144445,7 +144445,7 @@ } }, { - "id": "034d441c-7a5d-44f0-a30d-08629a0409bc", + "id": "43f31586-1dd2-47ca-89e6-0870d3d52ab9", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -144490,7 +144490,7 @@ }, "response": [ { - "id": "db13c3b9-8dde-47ba-8c5f-c6859ea46089", + "id": "420cd528-00f8-498a-bf47-a3f895033806", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -144531,12 +144531,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d92dea0-f375-479f-9daf-744fa21ced8e", + "id": "c24c29d1-5dc5-4237-b17f-b1fb6fe63b87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144577,12 +144577,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd5e5c13-5ceb-4d9c-9bea-664e2f32a812", + "id": "a9d786ed-7555-4c5b-a258-f53b4c3078de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144628,7 +144628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c212d70-236a-4bc8-b585-343e5e80e538", + "id": "12ab45e8-84a4-4c42-814d-0fbd280efaeb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144669,12 +144669,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c0d619f3-ccbf-4ffe-b06f-076f879b13bd", + "id": "94f80709-0ab8-4275-a7e0-643aee34f02c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144715,12 +144715,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e22f2cfa-a930-461a-b5c9-f9328f18391c", + "id": "dc3c6fbb-dc8b-40e4-8924-a95ac44d04ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144766,7 +144766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c909e18c-cbf1-4c1c-9573-4cc9364dfa82", + "id": "b4c52fb2-9a23-4a42-8139-ec3ae1be274d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144807,7 +144807,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -144818,7 +144818,7 @@ } }, { - "id": "136cf295-1f62-45cf-860c-95fad23b4311", + "id": "921f570c-2515-4aab-8538-ed02f6518ef4", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -144865,7 +144865,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -144876,7 +144876,7 @@ }, "response": [ { - "id": "17ae86c4-5d1a-440f-9ff3-728c8580a978", + "id": "730acf1a-e9ab-400b-8fe2-2258860cfe86", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -144913,7 +144913,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -144930,12 +144930,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "78398af3-5298-40a5-9419-f2bc22363648", + "id": "3b580310-625c-4eca-971d-9e31898b4a08", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144972,7 +144972,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -144989,12 +144989,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e25bea8a-1e51-41f4-aa5c-e1c8c411edf3", + "id": "f8729977-6cea-4140-87ad-8326c67bd350", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145031,7 +145031,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -145053,7 +145053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b0f5a9d-a71e-4a8e-920f-f8f3d05371c3", + "id": "976c425c-9e4a-4f6a-9c56-6a073a29f1e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145090,7 +145090,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -145107,12 +145107,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b454d976-b7d3-432e-b954-1ae96c034a31", + "id": "c2f0fbd1-ca5b-496c-8ece-49f23618a2e7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145149,7 +145149,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -145166,12 +145166,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2abb7fd1-3369-4aad-b413-5ab5c06f58a7", + "id": "ff467077-9db9-4a02-a775-ad40a45dfeaa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145208,7 +145208,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -145230,7 +145230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c585aeab-6244-481a-9aad-afb3080f528b", + "id": "47119170-9bc7-4a90-8977-841708da373f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145267,7 +145267,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "raw": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "options": { "raw": { "headerFamily": "json", @@ -145284,7 +145284,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -145295,7 +145295,7 @@ } }, { - "id": "41a5aaae-fb9a-4a41-b081-13ebeb8cc403", + "id": "ea19929b-4784-4737-b7d1-a67f2bc8c47b", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -145342,7 +145342,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145353,7 +145353,7 @@ }, "response": [ { - "id": "98db4ba6-7bf5-46f1-9de6-07661d875596", + "id": "3060b51b-7120-449f-855a-0fab82c5ab7a", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -145390,7 +145390,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145407,12 +145407,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8795e328-d0a7-45ba-8afd-f4ff20fa1843", + "id": "9191a22b-d2f4-43e2-938f-3276e37f2b7e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145449,7 +145449,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145466,12 +145466,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52c069f1-3438-4801-b157-08e49c96099a", + "id": "d3e2a96f-629f-4a86-8625-f8aa4e55d962", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145508,7 +145508,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145530,7 +145530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "647801ca-2242-401b-b630-47709119e93d", + "id": "1036c5a5-9e93-4693-9797-11efb14c8551", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145567,7 +145567,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145584,12 +145584,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b6b09fc7-1d2e-4868-898d-050f51735b7c", + "id": "cb164313-b79d-48f5-97bc-e90ff3712580", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145626,7 +145626,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145643,12 +145643,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5308cf0d-48ca-4ce5-a252-d02727e84364", + "id": "5d77dc4c-6354-4e0c-aa93-0a4e3f5bf44e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145685,7 +145685,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145707,7 +145707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f752bba-3c30-4ad6-8cc8-6d4972e450a8", + "id": "1fa893ae-f6e1-45ff-8806-ac9b87ef6f62", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145744,7 +145744,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -145761,7 +145761,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -145772,7 +145772,7 @@ } }, { - "id": "42c1ecd6-c960-49e7-9e4c-fd8efa49b392", + "id": "857a97f6-b1ac-4d06-95da-044d53ef3154", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -145814,7 +145814,7 @@ }, "response": [ { - "id": "5d55f1b8-0a86-4bf4-9f13-52ed1f9f53ff", + "id": "441c6aeb-6a13-43f0-82ae-c2c93d7b7e07", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -145850,7 +145850,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c78f946e-3d7a-40d2-9b7c-044df5e8f9bc", + "id": "05a32059-fb8c-43f4-b278-61b0481adea6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145891,12 +145891,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c883f82f-598f-434b-a5cb-933ac7946307", + "id": "2e52c3b2-d420-4196-b9e8-f70af7965ced", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145942,7 +145942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cc07796-4636-4f4d-b4f8-3f6d4eeb1a8f", + "id": "73b99ea5-bf1f-4aad-a365-96c51900b0c5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145983,12 +145983,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67c67581-09ba-4cbc-897d-edbe0bbf1c24", + "id": "754b1edd-7448-4ce5-b8d6-7fa8a02419c5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146029,12 +146029,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a6e9904-a381-471e-8a5c-6d5ace2d9700", + "id": "61382603-2f25-4fba-8b33-5480a05dd4dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146080,7 +146080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a6480e7-9619-49cc-8b79-47ac67a556e1", + "id": "f585bc29-57b1-4c14-aa37-916080976568", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146121,7 +146121,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -146132,7 +146132,7 @@ } }, { - "id": "0d3de8ab-22f6-488e-a970-ddb9ee6a827c", + "id": "2f0b9e7a-113f-43bf-a167-9050c8d9e840", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -146168,7 +146168,7 @@ }, "response": [ { - "id": "03ba1cdc-7825-4b02-bf03-0a87aa621448", + "id": "67ce1dd3-c09d-4017-8921-2c4bdd98437e", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -146214,7 +146214,7 @@ "_postman_previewlanguage": "text" }, { - "id": "36dfe641-23cd-4c18-a51e-7715e79ae8b5", + "id": "23ebaac9-4df5-454d-b9ff-dca73944232a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146255,12 +146255,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "948a2c53-9104-49e0-a4e9-faa62625a9ed", + "id": "affc28ee-f8ba-4186-9603-a798da6e546f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146306,7 +146306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a60c2c0-331b-4385-b877-8ad222f6d727", + "id": "377a40b7-a5b2-4600-9f3b-355330cd691d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146347,12 +146347,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3af4c2ed-1e6e-43a5-a924-2265042732be", + "id": "9d07f5cc-f3fd-47c1-88b1-681c155b29a2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146393,12 +146393,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56b2230f-f278-4032-830b-a8aef8c17729", + "id": "86402440-5219-4e4a-9309-6326e9141a85", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146444,7 +146444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adc2163a-b862-4e18-b879-a58160f88a78", + "id": "0189d3d4-a0da-42ff-b5d0-5ef6906ba2e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146485,7 +146485,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -146496,7 +146496,7 @@ } }, { - "id": "63f0d7ef-b330-4ab5-b20a-3d7d495ffd26", + "id": "56243560-9af9-487c-b28f-39652c7e8030", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -146552,7 +146552,7 @@ }, "response": [ { - "id": "ff046bce-2154-47e6-8478-855997a28b3d", + "id": "c7a36a32-3ff7-4706-b540-f6484ba16743", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -146610,12 +146610,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bcda5525-97e7-40f8-bddf-4e311494a0ab", + "id": "7ba97483-8608-4c7d-b67b-e1c4c06d7131", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146673,12 +146673,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56de8098-1946-4564-80ea-a11605fc7ce6", + "id": "4f7d6373-5a75-489f-8f5e-d096c67057d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146741,7 +146741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "540e5e4b-3e34-4efc-b25c-d0ffba24dba4", + "id": "9ffeb603-89d8-4543-975f-c4ec10b75135", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146799,12 +146799,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4697440c-5d23-4b87-b56b-27aad202d74f", + "id": "76427539-7edd-4d46-80a5-c0354ffe295f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146867,7 +146867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "215c82b7-ee6f-4eb2-96bb-a7280b18dd7e", + "id": "1c268053-766b-4abc-806d-f93f72cc8c9f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146925,7 +146925,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -146936,7 +146936,7 @@ } }, { - "id": "eb00bdd0-6900-4693-9bb7-8618c2055e1e", + "id": "8681a142-4f9f-47ea-8876-f58bdd3cd65d", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -146982,7 +146982,7 @@ }, "response": [ { - "id": "277064ac-bda8-4e53-acda-e183f03bb0bb", + "id": "0e855bab-60dc-45e7-8d89-49486e1323fe", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -147038,7 +147038,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1448f935-10c3-4a92-a10a-bdc7701301dc", + "id": "abd19fd4-ccba-46f9-93df-375731fe3b96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147089,12 +147089,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "638679b7-af91-402b-b100-010f27186efb", + "id": "3f846400-01ab-4b15-83d8-c0181410023d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147150,7 +147150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92b88660-a8c9-46c1-9fc4-55ffd5dcca85", + "id": "0763b8a2-76d1-4cae-8e89-839dbbe6dbe2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147201,12 +147201,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a2c3c8a-94f1-474f-98bb-c11e5bac3b27", + "id": "e58ea4ba-9cbb-4ea2-9290-6ffca4d47fdb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147257,12 +147257,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a8a84cf-6f63-4911-88d4-17ee0222be4f", + "id": "6729e96d-7d8c-4493-aa6e-0baddb4a28d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147318,7 +147318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1db3dfb2-50a8-4332-b3ba-76628471342f", + "id": "bb97c557-5f82-49bd-bcf9-ae3794e82225", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147369,7 +147369,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -147380,7 +147380,7 @@ } }, { - "id": "5071a9a7-1f30-493c-9149-0929ece7cd90", + "id": "b38a1e03-b209-4f41-a9e0-20c931a1626d", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -147446,7 +147446,7 @@ }, "response": [ { - "id": "bb7ed908-1420-4044-9149-e377ec83194e", + "id": "504a3e4b-f147-43b9-a1fd-2ddc5fc8c331", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -147514,12 +147514,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"NO_AGGREGATION\",\n \"ADDITIONAL_ACCOUNT_REQUEST\"\n ],\n \"configuration\": {},\n \"attributes\": [\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 \"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}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"nativeObjectType\": \"\",\n \"identityAttribute\": \"\",\n \"displayAttribute\": \"\",\n \"hierarchyAttribute\": \"\",\n \"includePermissions\": \"\",\n \"features\": [\n \"PASSWORD\",\n \"NO_GROUP_PERMISSIONS_PROVISIONING\"\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a0e2580f-ad39-435f-bf1f-7aadcf9b6118", + "id": "f22b5775-39c4-466b-abd8-47dcabbfbb60", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147587,12 +147587,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5502337d-0f02-4749-830a-32a877a33912", + "id": "6146a629-7c98-4541-812c-221cbbed2d5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147665,7 +147665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0096204a-b010-4933-9fba-4ddeabc00d77", + "id": "104b5cb8-32a4-4742-a75a-26262cefa5c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147733,12 +147733,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "69bdfb55-4834-42c7-8218-a1a9eaabdc8b", + "id": "ca774b49-e2fe-4aef-975e-8a6d98aafbee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147811,7 +147811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89787a09-a349-474b-9468-8ffef0d18f6d", + "id": "980231ef-cf0c-4e64-8c94-339fa2a05b2a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147879,7 +147879,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -147890,7 +147890,7 @@ } }, { - "id": "51e0ae70-d11b-4c74-99f6-4e880403627f", + "id": "24a50fc1-cea2-4b3d-ab84-d8b49293e5ab", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -147945,7 +147945,7 @@ }, "response": [ { - "id": "62bb8b97-37a8-42b8-a970-c6166d9e3e06", + "id": "3d2384f3-830e-4636-8ec9-50a2e5c74c45", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -148002,12 +148002,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 \"COMPOSITE\",\n \"NO_UNSTRUCTURED_TARGETS_PROVISIONING\"\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 \"connectorImplementstionId\": \"\"\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 \"PASSWORD\",\n \"ENABLE\"\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 \"connectorImplementstionId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "efd3a105-3f01-4c3a-b2cc-32aa1c241a65", + "id": "a29ffd13-f9ca-454a-8434-f40f309231c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148064,12 +148064,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83677f67-6bd8-4288-a8a1-8af6f250f45f", + "id": "e58c3273-119b-4eca-8fe9-80cd42599cf3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148131,7 +148131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac86c289-2b60-4503-a9ad-10f169bbba02", + "id": "bebf4609-e461-4d73-91f2-a4fc71a3aa17", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148188,12 +148188,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b68ba8da-00a6-420e-a7ca-35bad06cdcce", + "id": "03acd316-dfab-4f8c-afdc-b72e37249876", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148255,7 +148255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d00130a6-12a1-4a40-9425-dd71254b2459", + "id": "f192ae6b-7cfc-49c1-9060-e3d42ffb8b38", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148312,7 +148312,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -148323,7 +148323,7 @@ } }, { - "id": "b00db621-5525-4df3-8d96-8c8fb4fd40f5", + "id": "11f3ecf7-1228-43b9-a9f0-faba9d95815b", "name": "Synchronize single source attributes.", "request": { "name": "Synchronize single source attributes.", @@ -148361,7 +148361,7 @@ }, "response": [ { - "id": "416771b9-7360-4150-b0c8-127a5d986fe0", + "id": "bdced564-fa32-47b9-8fe1-6423434c57c9", "name": "A Source Sync job", "originalRequest": { "url": { @@ -148401,12 +148401,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": "a21daa74-3f55-425f-8fca-aa8e90e48da0", + "id": "8b2afc22-9786-4a0e-af7f-82c38123f3f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148446,12 +148446,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de21ce32-ab29-4e34-b26c-0d25a6d810f0", + "id": "2e1fb6bd-4a69-4469-8f21-45720be1d568", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148496,7 +148496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1852b00d-1347-483b-8c68-4f115f9c335b", + "id": "8e2f329d-0082-45c1-9b88-4a81bb696670", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148536,12 +148536,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a9c0a99-d646-4181-a29f-a58d38bdb8d0", + "id": "188645a5-798e-4e9e-9708-56408259455a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148581,12 +148581,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c3e4a8f-745f-4793-9bb2-dd22e03e9aaa", + "id": "d48977ab-03cf-4139-8185-ea54f8d3f272", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148631,7 +148631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a521fa2e-46fa-472d-968f-515628dec973", + "id": "4e312db9-8e2c-4488-a7d8-6e768665fd55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148671,7 +148671,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -148682,7 +148682,7 @@ } }, { - "id": "34359328-26ce-4eab-986d-85f78e6de0df", + "id": "bc851d44-b489-40b7-ac10-6c03c2e4d423", "name": "Get Source Entitlement Request Configuration", "request": { "name": "Get Source Entitlement Request Configuration", @@ -148718,7 +148718,7 @@ }, "response": [ { - "id": "e29d5eaa-729b-49b2-b8c4-cab094b2b77b", + "id": "93ad69af-8a5d-4b82-a5c7-ad0eca9e8f6d", "name": "Source Entitlement Request Configuration Details.", "originalRequest": { "url": { @@ -148758,12 +148758,12 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c918526f-070a-4df6-aee3-84cad0e92568", + "id": "fe8577df-4dc7-4c61-8a46-25ee2e5ad456", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148803,12 +148803,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e0c224ac-3eb3-4b0f-a08c-387da239b617", + "id": "f062a55d-0f9b-4a3a-8ba1-e7b04cd40b33", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148853,7 +148853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ca1973b-2abb-4aa0-ba1a-cc8a35a20379", + "id": "6209093f-b9e2-456f-898c-98fa36070524", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148893,12 +148893,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "856c4e8b-5676-4c67-a527-37c9e18fb53e", + "id": "86364413-d89e-4437-8918-525fdb1cb45d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148943,7 +148943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd3856b0-c8fd-49a1-963a-4224e7107761", + "id": "21dd6310-ae8c-4e66-b540-c0b870bea640", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148983,7 +148983,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -148994,7 +148994,7 @@ } }, { - "id": "656ebe08-133d-4e01-8a8b-9e9fa819be96", + "id": "255b2ffa-0668-4e88-b6d5-49b46daa3840", "name": "Update Source Entitlement Request Configuration", "request": { "name": "Update Source Entitlement Request Configuration", @@ -149032,7 +149032,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149043,7 +149043,7 @@ }, "response": [ { - "id": "e88a4d19-f2d7-4d28-b524-2e20eac8e152", + "id": "639737da-dedb-403f-8a62-ec8a6167bb48", "name": "Source Entitlement Request Configuration Details.", "originalRequest": { "url": { @@ -149079,7 +149079,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149096,12 +149096,12 @@ "value": "application/json" } ], - "body": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1eb5ef2e-690f-4e32-a255-136baa86785c", + "id": "5e24f19c-c1d9-4367-adca-e0a2af4c1590", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149137,7 +149137,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149154,12 +149154,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05c8300d-2319-40e3-857d-0dbc56329fbe", + "id": "6b9267a4-5770-421a-aac6-066a159d39c5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149195,7 +149195,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149217,7 +149217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "649650df-8a68-423c-a01d-4ee0abf29e1e", + "id": "0c8943a3-e991-47cf-975e-ac31c1468366", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149253,7 +149253,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149270,12 +149270,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc681efa-296a-4e79-905f-b1570c3f4a6e", + "id": "8d81d31e-086c-4fb5-8efb-e17997a91536", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149311,7 +149311,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149333,7 +149333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f5905b1-66f1-4620-8d10-1e13a6b81a66", + "id": "cc932ee7-edbf-4614-b6da-6838c161f7df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149369,7 +149369,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accessRequestConfig\": {\n \"approvalSchemes\": [\n {\n \"approverType\": \"ENTITLEMENT_OWNER\",\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\": \"SOURCE_OWNER\",\n \"approverId\": \"\"\n },\n {\n \"approverType\": \"MANAGER\",\n \"approverId\": \"\"\n }\n ],\n \"requestCommentRequired\": false,\n \"denialCommentRequired\": false\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149386,7 +149386,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -149403,7 +149403,7 @@ "description": "Import and export configuration for some objects between tenants.", "item": [ { - "id": "fe4ef44a-a1ab-42a7-9a54-5c4900a0c1d7", + "id": "bc5d44de-4399-4c35-b9bd-48f9dba0ff3f", "name": "Initiates configuration objects export job", "request": { "name": "Initiates configuration objects export job", @@ -149435,7 +149435,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"commodo ut\",\n \"excludeTypes\": [\n \"TRANSFORM\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"IDENTITY_OBJECT_CONFIG\"\n ],\n \"objectOptions\": {\n \"Lorem485\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"deserunt_db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"incididunt6\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Excepteur sed ea\",\n \"excludeTypes\": [\n \"FORM_DEFINITION\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"GOVERNANCE_GROUP\",\n \"TRANSFORM\"\n ],\n \"objectOptions\": {\n \"non0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"veniam_0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149446,7 +149446,7 @@ }, "response": [ { - "id": "b32e42f7-7b0d-4872-8eaa-c7c288a78235", + "id": "3dc6f1f9-b42e-4f4e-a96f-32567c4a0ab5", "name": "Export job accepted and queued for processing.", "originalRequest": { "url": { @@ -149481,7 +149481,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"commodo ut\",\n \"excludeTypes\": [\n \"TRANSFORM\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"IDENTITY_OBJECT_CONFIG\"\n ],\n \"objectOptions\": {\n \"Lorem485\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"deserunt_db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"incididunt6\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Excepteur sed ea\",\n \"excludeTypes\": [\n \"FORM_DEFINITION\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"GOVERNANCE_GROUP\",\n \"TRANSFORM\"\n ],\n \"objectOptions\": {\n \"non0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"veniam_0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149498,12 +149498,12 @@ "value": "application/json" } ], - "body": "{\n \"jobId\": \"\",\n \"status\": \"COMPLETE\",\n \"type\": \"EXPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", + "body": "{\n \"jobId\": \"\",\n \"status\": \"CANCELLED\",\n \"type\": \"IMPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e90f96ff-4324-4129-81b8-417ffdf5f78c", + "id": "dbb0068f-d657-44f4-a0ae-55c828076c6c", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -149538,7 +149538,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"commodo ut\",\n \"excludeTypes\": [\n \"TRANSFORM\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"IDENTITY_OBJECT_CONFIG\"\n ],\n \"objectOptions\": {\n \"Lorem485\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"deserunt_db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"incididunt6\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Excepteur sed ea\",\n \"excludeTypes\": [\n \"FORM_DEFINITION\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"GOVERNANCE_GROUP\",\n \"TRANSFORM\"\n ],\n \"objectOptions\": {\n \"non0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"veniam_0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149555,12 +149555,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "99f7df75-9596-4e89-9da3-cb9584c5b1cf", + "id": "cf88b292-04a1-44a1-852a-63f0597c3bfd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149595,7 +149595,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"commodo ut\",\n \"excludeTypes\": [\n \"TRANSFORM\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"IDENTITY_OBJECT_CONFIG\"\n ],\n \"objectOptions\": {\n \"Lorem485\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"deserunt_db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"incididunt6\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Excepteur sed ea\",\n \"excludeTypes\": [\n \"FORM_DEFINITION\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"GOVERNANCE_GROUP\",\n \"TRANSFORM\"\n ],\n \"objectOptions\": {\n \"non0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"veniam_0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149617,7 +149617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47a8b4f7-2951-46a0-9aa9-2791bcd579e2", + "id": "d672c191-3144-40cd-a787-0586374a07a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149652,7 +149652,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"commodo ut\",\n \"excludeTypes\": [\n \"TRANSFORM\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"IDENTITY_OBJECT_CONFIG\"\n ],\n \"objectOptions\": {\n \"Lorem485\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"deserunt_db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"incididunt6\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Excepteur sed ea\",\n \"excludeTypes\": [\n \"FORM_DEFINITION\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"GOVERNANCE_GROUP\",\n \"TRANSFORM\"\n ],\n \"objectOptions\": {\n \"non0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"veniam_0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149669,12 +149669,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43b6ea27-1662-442a-8421-f465e6f416af", + "id": "3980c840-1365-4495-8e74-a83103f6e719", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149709,7 +149709,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"commodo ut\",\n \"excludeTypes\": [\n \"TRANSFORM\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"IDENTITY_OBJECT_CONFIG\"\n ],\n \"objectOptions\": {\n \"Lorem485\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"deserunt_db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"incididunt6\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Excepteur sed ea\",\n \"excludeTypes\": [\n \"FORM_DEFINITION\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"GOVERNANCE_GROUP\",\n \"TRANSFORM\"\n ],\n \"objectOptions\": {\n \"non0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"veniam_0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149726,12 +149726,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ceca97c1-fe23-4ba1-897c-4cf802a5ad46", + "id": "e8a222ae-0655-420a-8495-e7b63b693da2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149766,7 +149766,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"commodo ut\",\n \"excludeTypes\": [\n \"TRANSFORM\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"IDENTITY_OBJECT_CONFIG\"\n ],\n \"objectOptions\": {\n \"Lorem485\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"deserunt_db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"incididunt6\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Excepteur sed ea\",\n \"excludeTypes\": [\n \"FORM_DEFINITION\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"GOVERNANCE_GROUP\",\n \"TRANSFORM\"\n ],\n \"objectOptions\": {\n \"non0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"veniam_0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149788,7 +149788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "375cdd3b-9bfc-4e51-b594-fd80173f27e0", + "id": "62293249-01c9-459d-b7c9-6cae4628fe48", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149823,7 +149823,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"description\": \"commodo ut\",\n \"excludeTypes\": [\n \"TRANSFORM\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"ACCESS_PROFILE\",\n \"IDENTITY_OBJECT_CONFIG\"\n ],\n \"objectOptions\": {\n \"Lorem485\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"deserunt_db\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"incididunt6\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", + "raw": "{\n \"description\": \"Excepteur sed ea\",\n \"excludeTypes\": [\n \"FORM_DEFINITION\",\n \"LIFECYCLE_STATE\"\n ],\n \"includeTypes\": [\n \"GOVERNANCE_GROUP\",\n \"TRANSFORM\"\n ],\n \"objectOptions\": {\n \"non0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"veniam_0\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -149840,7 +149840,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -149851,7 +149851,7 @@ } }, { - "id": "61aaa22c-cfdf-4f40-83fa-9d1af4f15060", + "id": "e02677a6-5ba2-467d-b292-32e269abb083", "name": "Get export job status", "request": { "name": "Get export job status", @@ -149889,7 +149889,7 @@ }, "response": [ { - "id": "c3aa232c-1d7b-4579-b45f-615690d49e39", + "id": "69e2546e-0c3d-4622-91de-945e7937b4ee", "name": "Export job status successfully returned.", "originalRequest": { "url": { @@ -149929,12 +149929,12 @@ "value": "application/json" } ], - "body": "{\n \"jobId\": \"\",\n \"status\": \"COMPLETE\",\n \"type\": \"EXPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", + "body": "{\n \"jobId\": \"\",\n \"status\": \"CANCELLED\",\n \"type\": \"IMPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "561f8086-668f-447e-805b-716982b96d4b", + "id": "b2617db9-7c28-4b13-80e9-0a4568dc929e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149974,12 +149974,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2d9ad83-e529-4bee-ae94-77a65eacd14c", + "id": "12d63081-866f-4f10-8729-0e1efd2e37f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150024,7 +150024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18324244-df11-4f25-ba51-15af46f6558a", + "id": "0cc06401-264c-4577-a1ae-84362d0c6607", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150064,12 +150064,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "398e4bfd-e9f4-49f0-95e9-0ed1ea65b8f0", + "id": "d1848307-de2d-4549-8623-30574b5d6c0b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150109,12 +150109,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "79758694-084b-4642-b57d-21d5bb322392", + "id": "daf84884-c347-4b02-9dfe-1ff0651316fb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150159,7 +150159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1648d77-c7b1-45e7-9a34-7bb170b29acb", + "id": "a79495c2-afac-4916-8d13-abfba3de8dfc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150199,7 +150199,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -150210,7 +150210,7 @@ } }, { - "id": "9adbe3c9-4daa-47a5-bd7c-7fb596b71c37", + "id": "938a3a22-e615-41bc-af0a-e13e332cdea8", "name": "Download export job result.", "request": { "name": "Download export job result.", @@ -150249,7 +150249,7 @@ }, "response": [ { - "id": "565184a0-1543-49f3-b3ad-c4591eb8dbe3", + "id": "feb050d7-b692-43fe-9727-04de2fd09a38", "name": "Exported JSON objects.", "originalRequest": { "url": { @@ -150290,12 +150290,12 @@ "value": "application/json" } ], - "body": "{\n \"version\": \"\",\n \"timestamp\": \"\",\n \"tenant\": \"\",\n \"description\": \"\",\n \"options\": {\n \"excludeTypes\": [\n \"ROLE\",\n \"RULE\"\n ],\n \"includeTypes\": [\n \"WORKFLOWS\",\n \"ACCESS_REQUEST_CONFIG\"\n ],\n \"objectOptions\": {\n \"cillum_d\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"sunt573\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"veniam_3c\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"id_889\": 46266326\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"IDENTITY_REQUEST\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"veniam5bb\": \"in\",\n \"dolor4e_\": -52780158,\n \"sint73\": true\n }\n }\n ]\n}", + "body": "{\n \"version\": \"\",\n \"timestamp\": \"\",\n \"tenant\": \"\",\n \"description\": \"\",\n \"options\": {\n \"excludeTypes\": [\n \"IDENTITY_PROFILE\",\n \"NOTIFICATION_TEMPLATE\"\n ],\n \"includeTypes\": [\n \"CAMPAIGN_FILTER\",\n \"PASSWORD_POLICY\"\n ],\n \"objectOptions\": {\n \"Ute\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n },\n \"incididunt35\": {\n \"includedIds\": [\n \"\",\n \"\"\n ],\n \"includedNames\": [\n \"\",\n \"\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"TASK_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"quis9\": true,\n \"mollit53\": true,\n \"ut_e\": true,\n \"aute_1\": 30361912.046265125\n }\n },\n {\n \"version\": \"\",\n \"self\": {\n \"type\": \"RULE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"object\": {\n \"voluptate93\": true,\n \"voluptate9e8\": \"irure do sed in\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "edb29d0f-144b-4559-a5a4-dd9523080786", + "id": "f5ee9d14-6291-4e67-a293-4217411c878a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150336,12 +150336,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3af1bb88-7b51-47fa-948d-75c28e5df1d1", + "id": "139689a9-474e-4b48-a06a-a08e0d2f67b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150387,7 +150387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffd73043-d7ad-4ad3-b7b9-607207c41a0e", + "id": "d1f25315-eec4-4a84-80e6-8de9a67d70da", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150428,12 +150428,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ea687a5c-7b12-440e-84e8-219b7fcecdb6", + "id": "97259aef-bfa5-4c98-b43d-19c74fd10ea8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150474,12 +150474,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c3d71c74-1509-479c-b6a1-f954f4eb7e20", + "id": "b607a9c1-e2cb-4bf4-a3a6-dc59581713fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150525,7 +150525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d98dbcb-496e-46ea-b94a-ce02fe04d047", + "id": "3dbeb189-6b1d-4e9a-9be5-dfb5f0f41b66", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150566,7 +150566,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -150577,7 +150577,7 @@ } }, { - "id": "017bd87d-4637-4c2f-a3e6-5a48a13b9839", + "id": "2aca268e-c94d-4be5-a5cc-cc74e0b0c1d0", "name": "Initiates configuration objects import job", "request": { "name": "Initiates configuration objects import job", @@ -150643,7 +150643,7 @@ }, "response": [ { - "id": "3c20f69d-3e21-4eb2-a13a-ec322b8d100f", + "id": "cd5eb5fc-06ca-4b06-8620-7c013f1a6e01", "name": "Import job accepted and queued for processing.", "originalRequest": { "url": { @@ -150718,12 +150718,12 @@ "value": "application/json" } ], - "body": "{\n \"jobId\": \"\",\n \"status\": \"COMPLETE\",\n \"type\": \"EXPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", + "body": "{\n \"jobId\": \"\",\n \"status\": \"CANCELLED\",\n \"type\": \"IMPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc197b11-b2b6-47da-bc85-8261bab40a22", + "id": "0c637fab-8dfb-4542-943c-2609e611229d", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -150798,12 +150798,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c994e6c4-f30f-48b8-b9be-388b95850b75", + "id": "22710759-cb8e-4ec8-a689-4b5d6355ba83", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150883,7 +150883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ecf8cb3-2fe0-499f-acfe-7bb312964b27", + "id": "aeee8c1e-a4ed-4f05-8a37-ae44121a5177", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150958,12 +150958,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "33a16533-213f-4d37-a638-3b8f52421ae0", + "id": "3fdfedae-532e-4431-b20b-765502d80028", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151038,12 +151038,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d2b2b525-f6f0-4015-898d-c8932de4fda9", + "id": "5e557b9e-f78f-4abc-94c6-ebbafee322c0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151123,7 +151123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca515872-a42b-4136-9553-3d3bdcbcfaa2", + "id": "fbe97844-e279-4f5e-8a49-9ed0e9dc3e40", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151198,7 +151198,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -151209,7 +151209,7 @@ } }, { - "id": "24ed90ad-399f-4eaf-98b3-26f616a6aa23", + "id": "0755d904-c3b0-4fdc-a78a-9321af0d87f8", "name": "Get import job status", "request": { "name": "Get import job status", @@ -151247,7 +151247,7 @@ }, "response": [ { - "id": "287641fd-2062-42f6-982c-b9e7c5125cfa", + "id": "d6ed2639-2f83-46a6-b8c6-50a3ddf29004", "name": "Import job status successfully returned.", "originalRequest": { "url": { @@ -151287,12 +151287,12 @@ "value": "application/json" } ], - "body": "{\n \"jobId\": \"\",\n \"status\": \"COMPLETE\",\n \"type\": \"EXPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", + "body": "{\n \"jobId\": \"\",\n \"status\": \"CANCELLED\",\n \"type\": \"IMPORT\",\n \"message\": \"\",\n \"description\": \"\",\n \"expiration\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"completed\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b7fc94e-35b3-4ec1-90b4-b2ee6adab1df", + "id": "ec3e819e-0328-44b7-818f-7a122ecf7d8e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151332,12 +151332,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c52f12a0-dbcc-49c4-b468-0d033d353062", + "id": "3f45c972-448a-4975-a89b-5f7397f392a7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151382,7 +151382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65d2fb20-8db4-4254-a76e-5261d7ea1c49", + "id": "ab95caec-0ab2-44b3-856f-4512a8ac27b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151422,12 +151422,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f601ff5-2fef-4258-bf1d-5463ef03a04e", + "id": "af90348c-75b4-44db-a6df-24d26f747240", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151467,12 +151467,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6da314a8-ac9d-4726-b22a-1dfa177ed11f", + "id": "f0bcbaf4-c680-42c9-a33d-87c833781133", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151517,7 +151517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d59b877-073d-48c1-bc90-cf1004c3e939", + "id": "4fc7e4b1-890b-4fd8-a92d-c45823196d8b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151557,7 +151557,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -151568,7 +151568,7 @@ } }, { - "id": "fb13bf08-5c9c-4423-a108-376f4c10f108", + "id": "390c9ebf-c6d0-40df-97fb-11d94a5c256d", "name": "Download import job result", "request": { "name": "Download import job result", @@ -151607,7 +151607,7 @@ }, "response": [ { - "id": "3653d23c-c96f-445c-bc4b-8c9c88cf9766", + "id": "7d011039-d829-4aa4-96c5-e2d7c832ddb2", "name": "Import results JSON object, containing detailed results of the import operation.", "originalRequest": { "url": { @@ -151648,12 +151648,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": {\n \"laborum_c\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"incididuntce7\": {},\n \"commodo88\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"anim9f8\": {},\n \"dolore_\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"Excepteur__02\": {},\n \"minim_91e\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"aute_5\": {},\n \"amet701\": {},\n \"eu45e\": {},\n \"velitec\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"laborum8\": {},\n \"in_439\": {},\n \"Lorem173\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"exercitation_f2f\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"GOVERNANCE_GROUP\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n },\n \"exportJobId\": \"\"\n}", + "body": "{\n \"results\": {\n \"in__57\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"incididunt_f1\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"exercitation_1a_\": {},\n \"esse_c\": {},\n \"anim9\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"consectetur_95\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"consectetur_9\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"consectetur_ed\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"sunt80\": {},\n \"sunt5\": {},\n \"incididuntae\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"ACCESS_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"voluptatef5\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"magna28\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"veniam3\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"proident_01\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"sed_d7\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"minim6b\": {},\n \"nostrud55f\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"Lorem_7\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n },\n \"ut_6\": {\n \"infos\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"sedce2\": {},\n \"Ut_28\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"voluptate_4c9\": {},\n \"voluptatece\": {},\n \"veniam_f3\": {},\n \"velit_336\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"est_bf\": {},\n \"incididuntf\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"nisi_c\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"est_ae3\": {}\n }\n },\n {\n \"key\": \"\",\n \"text\": \"\",\n \"details\": {\n \"laborum_ba\": {},\n \"ipsumca4\": {},\n \"nulla61a\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ]\n }\n },\n \"exportJobId\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7adf7d66-bb3c-49bf-a07b-9017c3ebad63", + "id": "99338cd8-0671-4d47-b7e9-71d18209d238", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151694,12 +151694,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d9904859-0dfc-44ef-af02-f593e931bdd9", + "id": "82de1b7f-f527-4754-950e-57d477fe2f40", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151745,7 +151745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17dcf030-39a2-43b6-896a-9d1e205e0625", + "id": "e542e048-6066-4952-ba01-4ff286e08f91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151786,12 +151786,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "287739a1-0c4f-4f06-80d5-f04fa65db395", + "id": "64a70835-e3b6-4e47-bb7a-8d1a02695ea9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151832,12 +151832,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b215ce6-1e1c-4873-9bd3-8d1d82a78edd", + "id": "6aff9a25-ad6e-4675-a3c1-e22bdcd6dcc1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151883,7 +151883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c9d9729-71b6-4627-98af-77aae3690d8a", + "id": "e0268943-125e-465a-8f89-6f58217cf18b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151924,7 +151924,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -151935,7 +151935,7 @@ } }, { - "id": "daf299cb-b757-4835-9b32-957769b3afbc", + "id": "25260384-b363-43ac-a7f5-66b9d507a07e", "name": "Get config object details", "request": { "name": "Get config object details", @@ -151965,7 +151965,7 @@ }, "response": [ { - "id": "8ae0c45f-e47c-4863-9d18-2483fb6a18e7", + "id": "1052e525-87ec-4b9e-b6ca-be89c8b1295c", "name": "Object configurations returned successfully.", "originalRequest": { "url": { @@ -152009,7 +152009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdd361e8-f679-46c3-a4be-61b94e3d59ac", + "id": "c60007bb-82a9-44c9-b559-4462a44b8fed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152048,12 +152048,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7fd5b3f4-0b28-4c75-b820-fc3f545da395", + "id": "9cc2fc85-ac99-41bc-bd9d-ee3aac1c7c5c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152097,7 +152097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24760665-2da7-4572-b632-6a10d43b0601", + "id": "c92a395a-0151-42ca-8422-5b0665a23c28", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152136,12 +152136,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5f908405-177f-4e78-bf15-48163fe97ed2", + "id": "92d35a6f-7850-4c48-968e-3b5b9d53b459", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -152180,12 +152180,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cbabcf8c-8777-4367-b249-3def13fee852", + "id": "c2f7c698-a2a7-4ed4-8bbe-371d3fa710d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152229,7 +152229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e0bedbe-bcee-43ab-b5a4-783f40f3a556", + "id": "cda271b6-83e9-43b6-96e0-e82d8b4a52cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152268,7 +152268,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -152285,7 +152285,7 @@ "description": "", "item": [ { - "id": "28b5433b-f39c-4705-beea-b90ccc680474", + "id": "60c57a5a-6c62-484e-8823-5c4c22d39d4d", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -152351,7 +152351,7 @@ }, "response": [ { - "id": "509c4ee2-73c2-4d10-9ae5-098401290da3", + "id": "a1caac91-7022-4701-908b-7dee7cd2775b", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -152426,12 +152426,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"objectRef\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"objectRef\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "40fcc760-aa9f-4d67-9702-770c927d7be1", + "id": "4c5a6191-5cfe-4d39-aa7f-06f2a1684c85", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152506,12 +152506,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "19387fed-84a8-44fd-9ff5-6ba91d81a536", + "id": "a6c202c2-7f65-4155-aa09-ced57864b298", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152591,7 +152591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db02c07b-9db7-4463-877e-d8e24abc3e4a", + "id": "5bf398b4-c3ae-4ad1-b15d-fa25904eba8a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152666,12 +152666,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c9d3886c-1d10-4b21-b6db-a7f6af4ff127", + "id": "01edc465-276f-4c97-859f-ce3f22536200", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152751,7 +152751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93215bba-fd8d-4528-9f3c-df9c190ddd39", + "id": "f5b64336-e49c-4b41-9717-663202f6dcba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152826,7 +152826,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -152837,7 +152837,7 @@ } }, { - "id": "4491fbda-f02c-41af-9a1a-8dcd870248dd", + "id": "ac2533ff-6fcb-4d59-a127-00401a433f91", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -152868,7 +152868,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -152879,7 +152879,7 @@ }, "response": [ { - "id": "47efc9b8-a0a6-4fa7-a126-59ca1ef13cbc", + "id": "9ac3b0fa-a158-4da8-bb00-b134c6ae059d", "name": "Created.", "originalRequest": { "url": { @@ -152909,7 +152909,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -152925,7 +152925,7 @@ "_postman_previewlanguage": "text" }, { - "id": "069aaae6-1aab-42f7-ba22-aeff256ca6e1", + "id": "d5a59b4c-decd-403c-852a-f163e31fdb3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152959,7 +152959,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -152976,12 +152976,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "19f58e64-d49a-47da-9fec-f026b1f9f8b6", + "id": "85284e61-3b17-4dbe-ae0f-3c80f7391a8d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153015,7 +153015,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -153037,7 +153037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f9cc0dd-cdd8-4f29-88e9-5fab7f19d7a7", + "id": "7775ab2c-882c-485c-b4fb-0e359671dc14", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153071,7 +153071,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -153088,12 +153088,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d8e29fd-d3b2-4a85-9e6d-3b75aecc89c7", + "id": "c3a51f7e-fcf1-4e4a-82dc-7af033934040", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153127,7 +153127,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -153149,7 +153149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2699bdc-68ab-48fe-9569-58f28bcf9b5f", + "id": "90b3efdf-6b76-4a79-930c-fc61f067a32c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153183,7 +153183,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -153200,7 +153200,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -153211,7 +153211,7 @@ } }, { - "id": "f255edb9-e495-4c9e-95e2-945318824784", + "id": "0895c8ac-138b-4789-ae17-abadcf1565a3", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -153268,7 +153268,7 @@ "variable": [ { "type": "any", - "value": "ROLE", + "value": "IDENTITY", "key": "type", "disabled": true } @@ -153285,7 +153285,7 @@ }, "response": [ { - "id": "e6db3266-3e45-42e4-9786-ba57fba155a9", + "id": "52dcd2d0-39a9-40db-9a25-40fdbb430e38", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -153361,12 +153361,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"objectRef\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"IDENTITY_PROFILE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n }\n]", + "body": "[\n {\n \"objectRef\": {\n \"type\": \"SOD_VIOLATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n },\n {\n \"objectRef\": {\n \"type\": \"REPORT_RESULT\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad768548-008b-415f-8d1f-5f5c25cc323b", + "id": "9b61cb4a-4e05-44af-8d0a-77a994ac5cb5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153442,12 +153442,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "30d1075b-99a1-4ff6-8f3d-b7d106b045f7", + "id": "18ad0eaa-77af-4b06-bc49-157d664acaba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153528,7 +153528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63ed1ba8-b786-409e-a13c-b1b3be82c750", + "id": "64e6f5e2-5348-4a83-9322-c5b7febca3e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153604,12 +153604,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67b944ed-64fb-4476-b128-f6f9d3222f7b", + "id": "0d501528-e296-42f4-af92-1604c140ea54", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153690,7 +153690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6222c9d9-55dc-4aa9-b3c3-66cb732d059f", + "id": "20e27f33-b58b-41f7-99ec-dea47774a77a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153766,7 +153766,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -153777,7 +153777,7 @@ } }, { - "id": "54ef8d46-7984-415c-af47-ac687c4485e2", + "id": "e1a2ab3e-2e8f-4b10-bc6b-188f9f454c0b", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -153798,7 +153798,7 @@ "variable": [ { "type": "any", - "value": "ROLE", + "value": "IDENTITY", "key": "type", "disabled": true }, @@ -153821,7 +153821,7 @@ }, "response": [ { - "id": "83f364bc-e8ea-43e8-a3eb-3ebb15669b90", + "id": "10e2e727-43d0-4e7f-8346-99a2978d6236", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -153861,12 +153861,12 @@ "value": "application/json" } ], - "body": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3cf74897-2ce4-419c-a82d-030d7c7fac88", + "id": "80c84866-9b8f-4039-bca8-756fea7bc010", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153906,12 +153906,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "470f3130-49e6-429e-8f69-cf6149e74e8c", + "id": "0e52cc0a-35d7-4237-90e6-3d1d1d4d457c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153956,7 +153956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2419ba25-962b-4de3-96b9-f8ab2f384041", + "id": "b27909c1-82e9-4341-b7fd-792df0c172fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153996,12 +153996,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "809c7e83-5f90-42ad-86b8-05d9bb35faab", + "id": "e5be94bc-c87f-41c3-90fe-125f57a0d570", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154046,7 +154046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbb6d2b7-463d-4689-9ebe-636196ce7237", + "id": "3c0bb5e3-d22f-4b6e-a29c-08a8b6b204b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154086,7 +154086,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -154097,7 +154097,7 @@ } }, { - "id": "ee4c216f-ac50-4c97-8edc-74ff5594830d", + "id": "77c1376a-e4c5-4432-aab2-e669d46050c7", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -154118,7 +154118,7 @@ "variable": [ { "type": "any", - "value": "ROLE", + "value": "IDENTITY", "key": "type", "disabled": true }, @@ -154143,7 +154143,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154154,7 +154154,7 @@ }, "response": [ { - "id": "2b162bd2-8660-47dd-99db-38fa3bfa3fcc", + "id": "9213f1f9-5867-4fc3-bfb8-1c150a7461c0", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -154190,7 +154190,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154207,12 +154207,12 @@ "value": "application/json" } ], - "body": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "body": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52503e00-a2c4-4fef-8a69-13ae96e374ce", + "id": "d3d44b9c-820e-4403-bad6-49cc2337eb3d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154248,7 +154248,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154265,12 +154265,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ce7a7471-2819-4fa3-a38f-ce71a0f8ba62", + "id": "167a94c9-7e62-4da0-9719-0ce863a093bd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154306,7 +154306,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154328,7 +154328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aad42627-0203-46ec-a58d-16c3c29c6fbb", + "id": "6b3ef1a7-b04b-4cc4-bfbd-0985060e0886", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154364,7 +154364,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154381,12 +154381,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cda457d5-2049-42f5-94bd-5d4049af21f6", + "id": "ee034407-02de-4c63-9fd7-f1eb6806bc9b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154422,7 +154422,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154444,7 +154444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b01873c-cd63-4301-94ef-dc4798faa47b", + "id": "67818391-ebc6-4dde-956c-aa78e1e10a76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154480,7 +154480,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"objectRef\": {\n \"type\": \"ROLE\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", + "raw": "{\n \"objectRef\": {\n \"type\": \"ACCOUNT_ACTIVITY\",\n \"id\": \"\",\n \"name\": \"\"\n },\n \"tags\": [\n \"\",\n \"\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -154497,7 +154497,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -154508,7 +154508,7 @@ } }, { - "id": "df8a1360-d5e9-414e-b873-9db4a4a6d31b", + "id": "e8ae3d2e-1d6e-4ddb-8faf-b9947193e7a0", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -154529,7 +154529,7 @@ "variable": [ { "type": "any", - "value": "ROLE", + "value": "IDENTITY", "key": "type", "disabled": true }, @@ -154552,7 +154552,7 @@ }, "response": [ { - "id": "684399c3-a9cf-4e9c-a5da-906bada28e63", + "id": "ec88a83f-1601-44e7-bed6-48fbbf980d2d", "name": "No content.", "originalRequest": { "url": { @@ -154587,7 +154587,7 @@ "_postman_previewlanguage": "text" }, { - "id": "26364bdd-bee3-436e-ad7c-6a05dd6b4960", + "id": "fc110f0a-a8c1-472f-b101-470981f6230d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154627,12 +154627,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cea1549b-48ae-449f-99aa-ff28b1b54285", + "id": "592fba9e-062d-412d-af49-307f90d7bf2b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154677,7 +154677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8980e8b8-e667-46d2-b644-3caa3632d935", + "id": "826b4256-2321-406d-918d-a925677ed519", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154717,12 +154717,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eae7ffdb-d395-4ece-b8b4-aef3e8ee0f38", + "id": "daded9c2-e911-4a07-b8f2-ca9a72984f9a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154767,7 +154767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f53372b7-ae3b-4404-a5ae-4bc27db28f44", + "id": "53d84f78-4fd1-41be-8d2e-8c8c7dcc5eb3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154807,7 +154807,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -154818,7 +154818,7 @@ } }, { - "id": "42e98275-e1d5-43ab-a3be-d2ff0b6209f3", + "id": "3cc1c7d1-aacc-4d96-b6ad-e49a8fb60c03", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -154850,7 +154850,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -154861,7 +154861,7 @@ }, "response": [ { - "id": "8a6a3c10-30ca-4918-8d88-00dc7f526711", + "id": "ae0a9193-33bf-49cc-a713-70d32bc781f3", "name": "Request succeeded.", "originalRequest": { "url": { @@ -154896,7 +154896,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -154913,12 +154913,12 @@ "value": "application/json" } ], - "body": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "body": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "099d475c-120b-4da7-ac73-ade5b6dc42a4", + "id": "1e80ede6-8801-4683-bedb-546376c6edaa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154953,7 +154953,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -154970,12 +154970,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3fa1468-b74e-4083-a756-fd31a462cd10", + "id": "9516b686-e5b6-40f0-80cf-08032f0c5548", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155010,7 +155010,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155032,7 +155032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fa41316-62e7-4c6e-902f-80bcdc598de7", + "id": "5ae07e41-26d0-4bd4-a801-6c6725c7418a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155067,7 +155067,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155084,12 +155084,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9049de11-8c8b-47b7-9f32-5a5674b93cbb", + "id": "7990cfa4-1b26-4257-a4d7-76e60aefcbca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155124,7 +155124,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155146,7 +155146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bab0844-ef36-4c9f-b342-845617ebb05e", + "id": "cd7e206c-8656-4797-84ac-da0d36fe60fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155181,7 +155181,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155198,7 +155198,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -155209,7 +155209,7 @@ } }, { - "id": "ab304b42-bee8-48b5-a6dc-597ed1dae841", + "id": "55109334-edef-4b3e-a47c-f1436bed62e2", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -155241,7 +155241,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155252,7 +155252,7 @@ }, "response": [ { - "id": "114f4f83-3dc5-4883-8c75-dc0c68c27cc1", + "id": "a641343c-91d5-42e7-8e6a-7030ffd84685", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -155283,7 +155283,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155299,7 +155299,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f14cd389-bb18-4e45-b116-fc9702b6ce1d", + "id": "e3f33f91-2210-455a-9642-277b7ec9deeb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155334,7 +155334,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155351,12 +155351,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e8847b5-89c1-46c6-be33-1824d0e4c255", + "id": "14eec21c-8b5c-490e-9c7b-ebb6303a0046", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155391,7 +155391,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155413,7 +155413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e0c8dc8-84a7-4f32-af53-1e01f3cfe5ac", + "id": "510acd19-0dc8-4f70-9b10-90bdaa6e2652", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155448,7 +155448,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155465,12 +155465,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6a6b4ccf-4561-4214-b63a-80feb82b375f", + "id": "6f14eb70-782d-4ec0-a94f-8a3e26d4752f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155505,7 +155505,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155527,7 +155527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cab1ebb3-1ce5-4aff-8640-84228c41670d", + "id": "5633f95d-4120-4097-88b3-cfade18a90c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155562,7 +155562,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"ACCOUNT_CORRELATION_CONFIG\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", + "raw": "{\n \"objectRefs\": [\n {\n \"type\": \"APPLICATION\",\n \"id\": \"\",\n \"name\": \"\"\n },\n {\n \"type\": \"ACCESS_REQUEST_APPROVAL\",\n \"id\": \"\",\n \"name\": \"\"\n }\n ],\n \"tags\": [\n \"\",\n \"\"\n ],\n \"operation\": \"APPEND\"\n}", "options": { "raw": { "headerFamily": "json", @@ -155579,7 +155579,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -155596,7 +155596,7 @@ "description": "Operations for creating, managing, and deleting transforms", "item": [ { - "id": "41901db1-5716-40e8-b19b-b5454bbb9eb6", + "id": "f2265fc3-6282-44dd-81fb-1aca822760e4", "name": "List transforms", "request": { "name": "List transforms", @@ -155671,7 +155671,7 @@ }, "response": [ { - "id": "f6d02c0a-f488-4a11-b5ac-8eb2e9490f87", + "id": "71b600a0-58e3-4b56-a55d-dcfe514536b5", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -155760,7 +155760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25774bbe-5fe9-435d-b653-b98e484491c4", + "id": "20913578-0714-462c-ab7a-0664c353637f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155844,12 +155844,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a17d8937-e327-455d-90dd-da685fa98485", + "id": "77f4bfea-402b-495d-a9a1-5e9ffc5f2ebe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155938,7 +155938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58dd5635-cb6e-4de5-aafe-b2d8ce22203a", + "id": "a6925f72-e555-4267-ac81-595abc56f978", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156022,12 +156022,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dca2848a-86a4-4a65-b5d9-3ded4cb4e47a", + "id": "5674c9fd-13b3-431d-b10e-290b1e0ab0d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156116,7 +156116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "750eb21b-1aba-420f-840a-68ced78968f0", + "id": "4d879fca-8cdd-44c0-84db-d230169f66fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156200,7 +156200,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -156211,7 +156211,7 @@ } }, { - "id": "060849de-c293-4178-8a45-7f6895b1a259", + "id": "412b6e1d-c2a0-4741-8a61-941a07e9a75c", "name": "Create transform", "request": { "name": "Create transform", @@ -156253,7 +156253,7 @@ }, "response": [ { - "id": "0e052095-28f5-4422-9aa4-640ecfa685e1", + "id": "c7e2a263-66a4-4fe4-8edf-df0b04151a65", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -156309,7 +156309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7a29a8f-b8d4-4387-9d27-bcb7f82a3b6b", + "id": "ff9ef336-78a4-462c-9692-d76d79f628a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156360,12 +156360,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d8349cf-8dcc-4611-a219-5f067da97e44", + "id": "b2dc4fb9-6dfa-47af-b43b-aff6ff6e2700", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156421,7 +156421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ce57a85-e3e2-44c3-b5a2-3e9b29a1f2e7", + "id": "c52cd9c4-4c74-4baa-bd98-4af7a36a3380", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156472,12 +156472,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "73d8b85d-76fa-4f25-98a2-8e436205066e", + "id": "c5f864f2-ad46-4f93-8527-d53e90cc876c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156533,7 +156533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "252c0b43-5730-4f02-89bf-6f9c9486bc56", + "id": "8d98aed2-e372-4cdc-9b36-81a869a9f24d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156584,7 +156584,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -156595,7 +156595,7 @@ } }, { - "id": "fd67384c-bba4-4655-a589-3d718671fc22", + "id": "f904770e-5074-4891-b8d6-fb7d266e2de0", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -156632,7 +156632,7 @@ }, "response": [ { - "id": "e5bdfd1b-c1ce-4608-9b74-3a85280bddb8", + "id": "81d9fe31-6b14-42da-9374-07db505eee59", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -156676,7 +156676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "408d5d0d-9bed-47ed-883a-ed943abd789b", + "id": "8d2e2284-9c42-4e14-a638-bd4c0ce48c8d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156715,12 +156715,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e199829d-3692-40df-9bb1-63593c4bcd28", + "id": "a79d1cd9-5dca-47c8-a756-7933b8e9e8dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156764,7 +156764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1af50586-fda0-417f-880f-3b8d2fbea994", + "id": "e2d19001-87db-4adc-b16d-33e61ad63a69", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156803,12 +156803,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "994499ea-0817-4fb4-9248-c4d1a5714d33", + "id": "0711b69f-908d-4b6c-8f1a-77cc5ee0ea93", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -156847,12 +156847,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "07f4e46a-a77c-4586-8d77-6c1eaf2a1c66", + "id": "ad55c15e-4e53-4f2e-801b-2a21d03fbdd6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156896,7 +156896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "629c036b-3769-4f14-8a03-fa44e993f5b4", + "id": "277274ea-be91-48c7-b8a4-0aaa6fba2fd0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156935,7 +156935,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -156946,7 +156946,7 @@ } }, { - "id": "3d6ace91-9fc7-494e-9780-9605616f89f1", + "id": "80cc268b-65e3-40a7-9132-3291851ba78a", "name": "Update a transform", "request": { "name": "Update a transform", @@ -156996,7 +156996,7 @@ }, "response": [ { - "id": "de200b14-74a9-4f96-b567-fb9550c034de", + "id": "c03910fb-a0e1-4cb6-8e1c-1dc22dc0c6a7", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -157053,7 +157053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c423c7b3-482c-48e5-86af-d310706c02fb", + "id": "043c40cf-6df6-41d0-bc19-256a98a9f2c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157105,12 +157105,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b9acd061-6a94-47c8-a1f6-30285185a23b", + "id": "5db97b47-4782-4ed4-8fe6-06eaf3382533", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157167,7 +157167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbc1d466-0f2a-4743-a08f-0e511d63fa7b", + "id": "d9658c59-2418-49ca-95e8-0c3a0889ab4d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157219,12 +157219,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b08f2c2-960f-4b9b-8215-1a8fc24ae82e", + "id": "3fb26957-9ec8-4762-ad35-a3f80c9962a2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157276,12 +157276,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f934eca5-25fc-4d59-87cf-a3d602eac8a1", + "id": "1ae9f1b1-0e9f-42bd-8ec1-83afb2d09199", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157338,7 +157338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e075e7fd-3b11-41db-87c4-87f59fde9dce", + "id": "f2c67a1d-1cfb-4d26-af38-d974ed99b114", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157390,7 +157390,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -157401,7 +157401,7 @@ } }, { - "id": "473ced09-da7b-4305-a359-24dbd5d3f642", + "id": "f8194f2b-98e9-4c6f-b010-11c82e81c391", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -157438,7 +157438,7 @@ }, "response": [ { - "id": "9cff9c64-9a2f-4268-8c7b-20ffea9baf60", + "id": "135a67b7-ca4f-426c-b4d6-2ca3295c5c04", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -157472,7 +157472,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9d4350cc-a4cf-448b-b7dd-33e518bfa7e3", + "id": "8466c483-4573-4a88-bb9d-fd34df277de7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157511,12 +157511,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27bc3eea-2aa6-4810-95e8-a09a9431b6ee", + "id": "0c736c70-e048-4d8b-bd42-2fba3f6b26e9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157560,7 +157560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd41f8ec-b627-48c5-899f-e0fc8bd0c844", + "id": "1335536a-6893-4f87-8186-68cb35c90800", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157599,12 +157599,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb6d77c0-4def-4170-9add-1845d064265f", + "id": "f3026334-5b8f-467a-92d4-842bb2ce9672", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157643,12 +157643,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b534736-b7fb-406f-bbca-575c39d6e0a7", + "id": "cf1c488d-c515-4283-b886-d8d42dcd9726", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157692,7 +157692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27a343fd-c762-44a1-9570-23212e2b0f3b", + "id": "049271fc-67dd-4416-8258-9cae39ac9cab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157731,7 +157731,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -157748,7 +157748,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": "7f5b23a1-4815-4dda-8f7b-a0ef7235064a", + "id": "689616ac-0b60-4eed-85da-0a10ae366490", "name": "List Triggers", "request": { "name": "List Triggers", @@ -157823,7 +157823,7 @@ }, "response": [ { - "id": "d447126a-faff-4d5a-8ee5-19d6c689c423", + "id": "841cb6e2-b47a-4d58-ad8c-e1f0b77ac649", "name": "List of triggers.", "originalRequest": { "url": { @@ -157907,12 +157907,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\": \"ROLE\",\n \"operation\": \"Add\",\n \"description\": \"\",\n \"comment\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ENTITLEMENT\",\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\": \"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\": \"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]", + "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\": \"ROLE\",\n \"operation\": \"Remove\",\n \"description\": \"\",\n \"comment\": \"\"\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"type\": \"ENTITLEMENT\",\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\": \"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\": \"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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39ec0c71-aabc-4694-8032-ad5d3e879474", + "id": "0d086e05-d605-469c-aa1e-c3a2b84d574e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157996,12 +157996,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fd6badc-65b2-4b1f-bcea-2415370f32ce", + "id": "fd064a2c-abe2-4ea1-a7ee-6e9bbef815f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158090,7 +158090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c95247b7-d986-4499-b298-335d4ac0a4cd", + "id": "df765894-c1b5-4ab4-b406-d3ab2b0993a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158174,12 +158174,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b67b95f6-88eb-4c9e-a4ae-c48a2e4e88a9", + "id": "4d2ba12a-6f8d-47ba-9ea9-36c1b63146b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158268,7 +158268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a18af099-d4e2-4eb8-851f-1001f86e06b6", + "id": "b7cd7910-d4fc-416a-a80e-f045a8fc4268", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158352,7 +158352,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -158363,7 +158363,7 @@ } }, { - "id": "e549da85-602f-4dea-8334-f4550f6f9ffb", + "id": "c791badb-3969-4c39-b555-d8f37fd5debf", "name": "Create a Subscription", "request": { "name": "Create a Subscription", @@ -158394,7 +158394,7 @@ "method": "POST", "body": { "mode": "raw", - "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}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\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}", "options": { "raw": { "headerFamily": "json", @@ -158405,7 +158405,7 @@ }, "response": [ { - "id": "d5471cba-f06c-4159-a532-7dcf73ff2c78", + "id": "a808dcb4-bdcf-4f5a-b128-0641dc6676c8", "name": "New subscription to a trigger. The trigger can now be invoked by the method defined in the subscription.", "originalRequest": { "url": { @@ -158439,7 +158439,7 @@ "method": "POST", "body": { "mode": "raw", - "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}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\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}", "options": { "raw": { "headerFamily": "json", @@ -158456,12 +158456,12 @@ "value": "application/json" } ], - "body": "{\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\": \"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}", + "body": "{\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "764e6421-ee23-4332-8c37-4bdb3429bf2a", + "id": "c0a7e66d-693b-4bf9-86d0-5489315c7c96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158495,7 +158495,7 @@ "method": "POST", "body": { "mode": "raw", - "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}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\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}", "options": { "raw": { "headerFamily": "json", @@ -158512,12 +158512,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b708682b-a707-4268-8af2-0b236cbf5268", + "id": "47170725-06a1-4890-b9b8-c6f6d04cc710", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158551,7 +158551,7 @@ "method": "POST", "body": { "mode": "raw", - "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}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\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}", "options": { "raw": { "headerFamily": "json", @@ -158573,7 +158573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b87a1e28-7650-4dd1-82ba-dc89710b86e8", + "id": "6f6a19d9-9223-40b3-ad30-7aa1d3abe247", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158607,7 +158607,7 @@ "method": "POST", "body": { "mode": "raw", - "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}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\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}", "options": { "raw": { "headerFamily": "json", @@ -158624,12 +158624,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00f9d1ae-3ef7-4bae-b2de-fa436dc2f22b", + "id": "072b6396-d51a-4e7c-8641-4963d984c1d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158663,7 +158663,7 @@ "method": "POST", "body": { "mode": "raw", - "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}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\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}", "options": { "raw": { "headerFamily": "json", @@ -158685,7 +158685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f26d041c-f2ea-4b50-b338-d79b7dab4dc0", + "id": "0a8e0b64-9ed5-4093-aa4a-83c07b4aee4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158719,7 +158719,7 @@ "method": "POST", "body": { "mode": "raw", - "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}", + "raw": "{\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\n \"name\": \"\",\n \"description\": \"\",\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}", "options": { "raw": { "headerFamily": "json", @@ -158736,7 +158736,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -158747,7 +158747,7 @@ } }, { - "id": "1192a289-cf88-4df4-8c65-4dd70e5c8abf", + "id": "09e72e24-fc6e-4f64-9b49-e3f535ba06f6", "name": "List Subscriptions", "request": { "name": "List Subscriptions", @@ -158822,7 +158822,7 @@ }, "response": [ { - "id": "58dcfb0e-ec68-4d29-bbea-2c799f18f583", + "id": "1230a9f6-d0f6-4cb8-abff-d1fb6448f7b3", "name": "List of subscriptions.", "originalRequest": { "url": { @@ -158906,12 +158906,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\": \"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 {\n \"id\": \"\",\n \"triggerId\": \"\",\n \"type\": \"WORKFLOW\",\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\": \"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\": \"EVENTBRIDGE\",\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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d29d6d3-a3d6-49be-ad43-5f383f297e7a", + "id": "2a9e429f-fa70-4414-adca-4d911f0fa1ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158995,12 +158995,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "273c0020-bb02-432a-93f4-01eba6fb2c63", + "id": "e3323ee6-5a81-4c91-815e-d725216b92a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159089,7 +159089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6cef389-ce57-4c9f-9785-f75b7bbab0f9", + "id": "39c69a98-6813-4cb3-8fd1-033ea64f91ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159173,12 +159173,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29293d1f-f3f2-48ba-8591-7fe99c238183", + "id": "78171ccc-0eca-4a8f-9c07-3f27b4f47852", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159267,7 +159267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92a3ffe9-e4fa-450d-bc14-75bc17379787", + "id": "47264669-9c2c-4cf4-9a04-60d499d21c9d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159351,7 +159351,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -159362,7 +159362,7 @@ } }, { - "id": "b173809e-7478-40bb-8c8c-109e7c815b01", + "id": "5e68fef8-4459-45b2-834d-505923f9152a", "name": "Update a Subscription", "request": { "name": "Update a Subscription", @@ -159401,7 +159401,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"WORKFLOW\",\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\": \"SCRIPT\",\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}", "options": { "raw": { "headerFamily": "json", @@ -159412,7 +159412,7 @@ }, "response": [ { - "id": "5ad32b94-ca63-41eb-b6ea-2c56d967b8ee", + "id": "deea286c-b487-49fc-ba18-c02254d4c6aa", "name": "Updated subscription.", "originalRequest": { "url": { @@ -159447,7 +159447,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"WORKFLOW\",\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\": \"SCRIPT\",\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}", "options": { "raw": { "headerFamily": "json", @@ -159464,12 +159464,12 @@ "value": "application/json" } ], - "body": "{\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\": \"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}", + "body": "{\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c76ca98-d399-44fb-af80-c8e48b21beb6", + "id": "8b027883-e7e7-41fc-888f-a9c53bafccdb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159504,7 +159504,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"WORKFLOW\",\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\": \"SCRIPT\",\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}", "options": { "raw": { "headerFamily": "json", @@ -159521,12 +159521,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1a406b6-e8aa-40c9-8cc0-25e7cfc94750", + "id": "2c96db51-6b12-42ed-a0d3-1012b189207b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159561,7 +159561,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"WORKFLOW\",\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\": \"SCRIPT\",\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}", "options": { "raw": { "headerFamily": "json", @@ -159583,7 +159583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f90bb8b6-23ce-450a-8b03-9ff31aed1514", + "id": "95918f9d-75bd-442b-a5d7-b3a643e8a172", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159618,7 +159618,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"WORKFLOW\",\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\": \"SCRIPT\",\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}", "options": { "raw": { "headerFamily": "json", @@ -159635,12 +159635,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "62d956c5-7486-4631-92e0-bac0e36e16aa", + "id": "9474e8c5-6951-4cd2-8023-f3c3c8b0f5f3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159675,7 +159675,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"WORKFLOW\",\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\": \"SCRIPT\",\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}", "options": { "raw": { "headerFamily": "json", @@ -159692,12 +159692,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "731560ad-73ed-46be-9728-10b6322e0e0f", + "id": "74bf21d9-19de-4420-8ab8-b82e5b1e4b9a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159732,7 +159732,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"WORKFLOW\",\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\": \"SCRIPT\",\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}", "options": { "raw": { "headerFamily": "json", @@ -159754,7 +159754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f717d2b8-3ae3-465d-907e-480fa8bff684", + "id": "e2b75034-4eb3-4f64-ad87-3e6c94f21f8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159789,7 +159789,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"\",\n \"description\": \"\",\n \"type\": \"WORKFLOW\",\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\": \"SCRIPT\",\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}", "options": { "raw": { "headerFamily": "json", @@ -159806,7 +159806,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -159817,7 +159817,7 @@ } }, { - "id": "86354187-0287-4c51-bb71-616d74f7d3d7", + "id": "2087c92b-fdf5-49b4-9831-694b5a61b626", "name": "Patch a Subscription", "request": { "name": "Patch a Subscription", @@ -159856,7 +159856,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -159867,7 +159867,7 @@ }, "response": [ { - "id": "30bca16d-1f04-4961-9c06-2566e8f59e32", + "id": "7f3331e6-0d7b-4e0f-941a-7fa198b7e424", "name": "Updated subscription.", "originalRequest": { "url": { @@ -159902,7 +159902,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -159919,12 +159919,12 @@ "value": "application/json" } ], - "body": "{\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\": \"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}", + "body": "{\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "019c435c-3dd9-4ca3-ae4a-c0a261a92984", + "id": "6ed70836-6880-4f3c-864e-b444ae8d66d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159959,7 +159959,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -159976,12 +159976,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c0ea0fcf-8b13-4b90-a79a-602142f2ca38", + "id": "2bb5ea74-9c8f-48af-b82f-2420e3b571ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160016,7 +160016,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160038,7 +160038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7f15eef-1697-4c1f-94cd-610f37ae2a27", + "id": "3a4ae407-a92b-4713-9f90-ee96afd092bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160073,7 +160073,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160090,12 +160090,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ee29238d-fd1b-4591-b6a5-9cf716c7e11a", + "id": "1200cebc-68c7-4158-9f19-1d8c96517e3f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160130,7 +160130,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160147,12 +160147,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "272e45a0-b4bc-4cee-9936-9948d3bc54ee", + "id": "099b9d5d-c388-43b2-83c5-8eaa8aa89729", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160187,7 +160187,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160209,7 +160209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76d5ef01-bca3-4fce-87ed-7f77a931276b", + "id": "5935b78a-4520-4ed3-a00a-c6497921a8c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160244,7 +160244,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"copy\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -160261,7 +160261,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -160272,7 +160272,7 @@ } }, { - "id": "88091f1b-8242-4739-bde9-02af5d0aabec", + "id": "0c3720fc-c47c-4267-8e40-fdd1a8ef696c", "name": "Delete a Subscription", "request": { "name": "Delete a Subscription", @@ -160309,7 +160309,7 @@ }, "response": [ { - "id": "26a8f937-8714-438c-8fe1-19512cb3a777", + "id": "ae7aae17-3b93-4c59-9454-ec65a437899b", "name": "Subscription is deleted successfully.", "originalRequest": { "url": { @@ -160343,7 +160343,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b8058a9d-36dd-4639-bc73-f06c86d9613d", + "id": "9bfef351-a9fb-4709-a9d4-6a6554219e8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160382,12 +160382,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec219b50-ec2b-4cc7-840b-d60b49d91607", + "id": "a8ddf9e2-9575-4b64-9ac2-91d7e62c36ed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160431,7 +160431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48efb436-cb52-4bc6-8596-7eeacda47848", + "id": "18a24727-d2cf-4376-95bf-3547c72b27d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160470,12 +160470,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ecfe669-5c75-439c-a148-43e5cf820536", + "id": "d0696980-7655-41a5-907a-ce505f72af62", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160514,12 +160514,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f17b7ca6-3923-4526-8528-1318ae8cd5ff", + "id": "0d81f881-67a0-45e5-8219-1d3df26e993b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160563,7 +160563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9953099b-4696-41e2-b193-39113182fd39", + "id": "6c06a671-2269-46f3-9991-9b004bbf73ec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160602,7 +160602,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -160613,7 +160613,7 @@ } }, { - "id": "de10e5b2-9d10-474a-b40c-8ebed27a7c4d", + "id": "df4bd946-5996-4225-ac4d-394965e21506", "name": "Validate a Subscription Filter", "request": { "name": "Validate a Subscription Filter", @@ -160656,7 +160656,7 @@ }, "response": [ { - "id": "c26f897e-5e43-4736-87e7-ce25afbec486", + "id": "02dd7d2c-9fc5-41f8-b3b4-76094b66af15", "name": "Boolean whether specified filter expression is valid against the input.", "originalRequest": { "url": { @@ -160713,7 +160713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fec44633-ec5d-4c1a-b927-2639c792e338", + "id": "44ef76d0-a44e-445c-ade9-34a5d1b60a99", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160765,12 +160765,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a33bb582-fedf-4976-a947-83d7a43a0d44", + "id": "6124fc4d-c3cd-42f1-8b49-d173b690d9ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160827,7 +160827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20cca1f4-eda4-4f33-8926-bbe26c21edd4", + "id": "d55b2df7-743f-46bc-a3b9-381c5137655c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160879,12 +160879,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "91476d14-3257-4918-9d76-4ecbb517ca41", + "id": "a5c39ceb-4e91-4f63-94c8-3a54148173d2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160941,7 +160941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2e91ec3-fbef-480e-a458-c31be1cce119", + "id": "52f35129-8ab0-484c-9f41-2d7197646a4e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160993,7 +160993,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -161004,7 +161004,7 @@ } }, { - "id": "feabf1fe-8ce8-4af3-aa25-be8cd56c93cc", + "id": "b27b31cd-68f2-47fc-b12e-1b756731b48e", "name": "List Latest Invocation Statuses", "request": { "name": "List Latest Invocation Statuses", @@ -161080,7 +161080,7 @@ }, "response": [ { - "id": "9723d077-d47d-423e-ba13-fc576e70cbcf", + "id": "f9ccfa78-04e7-4f60-b190-e06e309f7fd7", "name": "List of latest invocation statuses.", "originalRequest": { "url": { @@ -161165,12 +161165,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\": \"TEST\",\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": "bfdfe193-3143-4d5f-827b-71c6baf24579", + "id": "a7820a03-a5d0-42fd-9832-bdaf4d228e90", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161255,12 +161255,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "649df9d4-561b-49ff-9eb4-d20509d153d1", + "id": "d80cfa78-a3e0-4b6e-9694-350c69587dd2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161350,7 +161350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d410b53-d6d6-413d-9cc1-874309c432b8", + "id": "d56fb8e7-2740-4db8-b637-d24459400cc5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161435,12 +161435,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f25efd70-0c77-42fc-a548-cb564e2211e9", + "id": "5b881b1f-d6ff-411f-848b-dfc010368aaf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161530,7 +161530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7140d96-9236-46a6-b943-d53857fc84e6", + "id": "4b39de04-f39c-4312-9f1e-1cf15c0dce3f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161615,7 +161615,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -161626,7 +161626,7 @@ } }, { - "id": "8f23ba24-01a0-4b91-aed6-8047d62948ee", + "id": "b9a0ae89-d2bd-41e5-af8e-a8ffbd378b50", "name": "Complete Trigger Invocation", "request": { "name": "Complete Trigger Invocation", @@ -161677,7 +161677,7 @@ }, "response": [ { - "id": "ac796b24-bb85-42e3-81bb-d984335bcaed", + "id": "2575103c-6279-4b8f-99af-9951bf485f32", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -161725,7 +161725,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e2b081d2-e482-49a3-8cba-acdf3cf21933", + "id": "6eb4b06b-0be0-4458-9daa-16640472a6a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161778,12 +161778,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dbfaa93c-ae02-4535-b36b-94038c935e47", + "id": "ac190d21-45da-4d8c-a379-f4ff8c106cad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161841,7 +161841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9389d5b8-27d0-4d64-aa5c-01ae3fb88afa", + "id": "9794f3c6-df22-4dee-afdf-440ef332f598", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161894,12 +161894,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c8fc9194-cf1e-464e-ba9b-a393fe278eb2", + "id": "3f90f120-1669-40a9-9bd0-194e9afc332e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161957,7 +161957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "816418a6-48d0-47ac-9a03-f7be5f54ed86", + "id": "642692bf-0070-456d-81db-9f28d07790f5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162010,7 +162010,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -162021,7 +162021,7 @@ } }, { - "id": "37c551e2-e706-436f-af06-692c10949195", + "id": "99fb46b5-71d5-480f-9909-8db45b547dc5", "name": "Start a Test Invocation", "request": { "name": "Start a Test Invocation", @@ -162064,7 +162064,7 @@ }, "response": [ { - "id": "1402804f-dbb2-4872-abb6-c4701f011571", + "id": "58e74060-8387-40fb-ad29-fcd949811b3b", "name": "Test trigger invocations that have been started for specified subscription(s).", "originalRequest": { "url": { @@ -162121,7 +162121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce4fb5ef-a1c7-437c-82df-9c55cce60f48", + "id": "21be119d-f617-483c-90a1-aa4d6130b1ed", "name": "Trigger invocation is skipped, because tenant has not subscribed to the specified trigger.", "originalRequest": { "url": { @@ -162168,7 +162168,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5854fe5e-1e14-4df3-9823-25b575d07221", + "id": "c5ad2ac6-61e1-435f-ba75-da5e06f4db8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162220,12 +162220,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b4d0cff-0b1c-42c5-a859-5e2ea5524346", + "id": "dc770bf2-4651-4340-b63b-0389a16f403c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162282,7 +162282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09fb84d9-4472-4feb-aebb-d0713f3e00e2", + "id": "840767a2-546e-41e0-81e9-df216f78c2f5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162334,12 +162334,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7cd3a702-d564-48d8-870e-d469c5c22918", + "id": "34f25c16-51f9-42f0-87be-ecd127ea47ba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162396,7 +162396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db7c42fb-7e6a-4877-a569-2374b7ffb185", + "id": "588f2309-17ee-47df-afa3-7d83a64471ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162448,7 +162448,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -162465,7 +162465,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": "2d71e85c-8ba3-4b3e-b07e-28ac323a5a7e", + "id": "8acd864d-e405-46d1-9727-a897c1fcc889", "name": "List Work Items", "request": { "name": "List Work Items", @@ -162531,7 +162531,7 @@ }, "response": [ { - "id": "79ad8a2f-a18b-4a93-af28-adcf01c08d1e", + "id": "be3f6390-3c75-4678-910b-51bffc82ec6b", "name": "List of work items", "originalRequest": { "url": { @@ -162606,12 +162606,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"FINISHED\",\n \"type\": \"DELEGATION\",\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 },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"FINISHED\",\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\": \"FINISHED\"\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\": \"CANCELED\",\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\": \"RETURNED\"\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\": \"RETURNED\",\n \"type\": \"EVENT\",\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\": \"PENDING\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f33f800a-ed68-47af-8eaf-82927331ea01", + "id": "75fd365b-2899-4233-ab10-38ef31ac413c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162686,12 +162686,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bae379ef-0904-4aa4-ac4e-a7c3366d1a94", + "id": "1c26e158-7d92-44b5-8194-e71d5704b8f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162766,12 +162766,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "669d63e5-dab3-4ce3-afd8-1e2e34517530", + "id": "a3aa852f-e91b-4fe2-8423-65fddda93c9f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162846,7 +162846,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -162857,7 +162857,7 @@ } }, { - "id": "7ea561b5-57b3-4121-ba4b-8f3fbd941aa7", + "id": "cb318459-e3a3-45e8-90f5-70375aac1a08", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -162924,7 +162924,7 @@ }, "response": [ { - "id": "4649b115-ab40-4042-b6d7-8d58ab7fb03a", + "id": "d76ffc22-0db5-409d-9962-7ac3fc8f4d8b", "name": "List of completed work items.", "originalRequest": { "url": { @@ -163000,12 +163000,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"FINISHED\",\n \"type\": \"DELEGATION\",\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 },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"FINISHED\",\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\": \"FINISHED\"\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\": \"CANCELED\",\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\": \"RETURNED\"\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\": \"RETURNED\",\n \"type\": \"EVENT\",\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\": \"PENDING\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2f8bd832-e6e5-42f3-b77c-5137c7210312", + "id": "eacb3857-8853-493b-b47e-267e96a56d5c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163081,12 +163081,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf516a96-d4e8-41e0-b2c8-aa9ffd0c4871", + "id": "816d90aa-d0e3-4b48-9e2a-1b4c63c36756", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163162,12 +163162,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cae4d1dd-03a7-4240-a89f-12c0c7727c40", + "id": "680609a7-c0bb-4a72-973b-7af27672f432", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163243,7 +163243,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -163254,7 +163254,7 @@ } }, { - "id": "6dc2b877-4c2b-4976-81c8-26251cf71946", + "id": "a6e11a8a-9a50-4f79-9493-01bcb6ab3352", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -163294,7 +163294,7 @@ }, "response": [ { - "id": "d09978d5-8d7c-4ce1-a595-25da2379f5da", + "id": "9ae83d19-98c6-4a68-8855-d88b0060d6ad", "name": "List of work items", "originalRequest": { "url": { @@ -163348,7 +163348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e019126f-434d-4c0b-b528-853fd9cf47bb", + "id": "2259b43a-14bd-41b8-a9e0-2eafdcc68d93", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163397,12 +163397,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a3ef5d92-4afb-4e1f-827e-158a8e7b38e8", + "id": "227c7e9c-7bda-4de0-9172-84872fbd7fc0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163451,12 +163451,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d855d87-e66f-4fd1-8578-0a6fc614249f", + "id": "07fea13b-a34a-4cfa-ab65-1f8c6b5c636e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163505,7 +163505,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -163516,7 +163516,7 @@ } }, { - "id": "1177e7fd-9a53-485f-a9be-59dab7f10c22", + "id": "03d0f2e3-94f2-4665-b78d-b051d5ba3655", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -163557,7 +163557,7 @@ }, "response": [ { - "id": "9fb4cda1-177a-461e-b983-171f301d0ca7", + "id": "ae11f0b3-7d11-4ede-9d90-e73a223b1792", "name": "List of work items", "originalRequest": { "url": { @@ -163612,7 +163612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a20f13af-b273-412c-bda1-8060860a02cf", + "id": "afc2c59e-4bbc-435f-8176-45fc32b22fa4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163662,12 +163662,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc4a6415-ef73-4f46-a8ac-1785bc6e6e4b", + "id": "0aebe639-4721-4248-b86e-ba5dc81dc009", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163717,12 +163717,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc8db9fb-e494-4e42-ac86-c6f6e93e5994", + "id": "303352f2-f871-4949-a9b6-e03aedaee125", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163772,7 +163772,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -163783,7 +163783,7 @@ } }, { - "id": "ee9e4574-39ee-4f74-a668-69712f52db06", + "id": "e69b5a2f-07fe-4745-97f1-da18fad9a7d6", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -163823,7 +163823,7 @@ }, "response": [ { - "id": "fd4583a4-7409-4689-9793-4ac029128268", + "id": "aeaa7c8c-a438-4de5-b476-10f2697a509e", "name": "List of work items", "originalRequest": { "url": { @@ -163877,7 +163877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c75cad74-43de-4e89-991b-a95c2c20365c", + "id": "db4a7c28-011a-482a-a4db-2ace94f83d19", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163926,12 +163926,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "147ccb49-5645-4a8e-97fd-6baf6aa9fd2f", + "id": "346f2709-0bfa-43f2-81ed-77b7cf4d754f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163980,12 +163980,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0f516a90-bed0-4f2e-b892-474de7c213fa", + "id": "32b259e2-5d2e-4ffb-b700-2a0f1c5dc469", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164034,7 +164034,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -164045,7 +164045,7 @@ } }, { - "id": "c7bb6471-2cd9-4581-bd2c-9a9c50a09641", + "id": "1622859d-89fc-4080-931d-c86132f1f275", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -164092,7 +164092,7 @@ }, "response": [ { - "id": "51b43311-01a9-4ce2-bc45-ef77deff0de4", + "id": "f9feb6ab-57d0-4a5f-922f-92b4d5d255ff", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -164141,12 +164141,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"FINISHED\",\n \"type\": \"DELEGATION\",\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 },\n {\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"FINISHED\",\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\": \"FINISHED\"\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\": \"CANCELED\",\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\": \"RETURNED\"\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\": \"RETURNED\",\n \"type\": \"EVENT\",\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\": \"PENDING\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e499f3f6-8043-4728-a340-f37697c06e55", + "id": "aefcce8d-7dbd-462a-ab98-59e885c62ce2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164195,12 +164195,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6e8a4c08-67d9-400b-bdb4-4d7218f9a809", + "id": "e4180210-8970-426b-b214-6d9cb1646c4a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164249,12 +164249,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "53b2cfe0-7f42-465f-9a10-c6abc9204885", + "id": "670eac3b-4c87-4943-aebb-4667058b0f46", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164303,7 +164303,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -164314,7 +164314,7 @@ } }, { - "id": "9faff6fa-90b8-4f43-a85f-a3f857d5f297", + "id": "cc3c403a-9e78-45cf-89bb-d697cdfbfdab", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -164351,7 +164351,7 @@ }, "response": [ { - "id": "2b39ffa2-07a7-41f2-bbfa-1514af08019c", + "id": "703fc7f2-5643-4838-bb20-8a4d4f667e10", "name": "A WorkItems object", "originalRequest": { "url": { @@ -164390,12 +164390,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"EXPIRED\",\n \"type\": \"CERTIFICATION\",\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\": \"RETURNED\",\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\": \"RETURNED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3f4f6ad9-a52d-4d2c-a488-6f831ff908d9", + "id": "5208f02e-f5b7-4f9e-a990-ee7d8f4b317e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164434,12 +164434,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04fb97d2-4fe3-4053-b768-a6c2fecbd72d", + "id": "4a9cf247-1489-432b-8af2-6515d65ab8be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164478,12 +164478,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b384aedf-3415-47c3-a439-ea6920c3fc9a", + "id": "f4ef1b6f-5ae2-435c-a01b-01a379f63933", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164522,7 +164522,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -164533,7 +164533,7 @@ } }, { - "id": "d9a18e3e-4351-4698-9df6-7c3f0f480e58", + "id": "74f728a4-365b-4dc5-a629-0d2e22e7ff53", "name": "Forward a Work Item", "request": { "name": "Forward a Work Item", @@ -164584,7 +164584,7 @@ }, "response": [ { - "id": "25509c28-0cf8-4381-92f8-beaf2597a487", + "id": "acb637b5-938e-411c-a008-6fe5d0da4ac8", "name": "Success, but no data is returned.", "originalRequest": { "url": { @@ -164632,7 +164632,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9c1a02fe-164b-4f63-a6dc-b213244625cb", + "id": "f234fcb9-0196-499c-9a58-2cadc31021fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164685,12 +164685,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "24cc01fc-80a0-484a-908a-9991e75b2d60", + "id": "0f0547f1-4580-4007-b1df-39930bcd5a09", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164748,7 +164748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11b22e79-8ef5-4830-8bbe-cfba9f281473", + "id": "1b4912be-62ab-4f6e-92b8-1e33bee179b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164801,12 +164801,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a761a32-585a-4ce2-8a3b-1efcddc36e32", + "id": "b512d745-90a5-4aad-97de-bd9e355eb15e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164864,7 +164864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9069670-2589-475e-8f58-af5a1e8e6eab", + "id": "6749f5e8-0d03-4b0d-b937-9e8c94a4b0e4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164917,7 +164917,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -164928,7 +164928,7 @@ } }, { - "id": "66273cad-f6e5-498c-a6db-ef0146de9032", + "id": "836a3844-0fcb-4088-9042-fdce337a5dd7", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -164973,7 +164973,7 @@ }, "response": [ { - "id": "c378aa94-ff6a-4317-b2a4-a29e9e738236", + "id": "8dfec4de-274b-4d38-8d24-efb8ff3e49ec", "name": "A work items details object.", "originalRequest": { "url": { @@ -165014,12 +165014,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"EXPIRED\",\n \"type\": \"CERTIFICATION\",\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\": \"RETURNED\",\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\": \"RETURNED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae08b71e-88d1-4ee4-bf22-4b36698cb304", + "id": "39aa5d54-1cd1-419e-aeb6-41f095a00840", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165060,12 +165060,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bae90462-b1a7-4afd-8b45-ce8d280722dc", + "id": "8bc7f475-e6d8-456a-a9f4-f8b3632424b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165106,12 +165106,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aca9a665-39aa-404a-8331-5ad3d89d28b0", + "id": "1814c4ab-4729-46e1-bb05-22138d0b6fee", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165152,7 +165152,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -165163,7 +165163,7 @@ } }, { - "id": "1100796f-c34b-410a-a666-1340f8ba8096", + "id": "08d88431-41b7-45a7-97c8-896828aefc09", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -165208,7 +165208,7 @@ }, "response": [ { - "id": "6b16a66f-9d48-407e-8f10-0ae0568f6049", + "id": "0d7572e2-c694-4bd6-a4da-3f1da795355c", "name": "A work items details object.", "originalRequest": { "url": { @@ -165249,12 +165249,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"EXPIRED\",\n \"type\": \"CERTIFICATION\",\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\": \"RETURNED\",\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\": \"RETURNED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90707b13-1e42-456a-bb5b-8e6712a113f8", + "id": "ffe3b719-204d-4410-9fe4-edd76ee61773", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165295,12 +165295,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a49c8fa2-a31c-4605-b1f4-9e4a4bff1fa9", + "id": "7a0379dc-10e2-476c-a6a0-26b5d04c8f97", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165341,12 +165341,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2ccabd12-188f-4362-a445-e9843352b702", + "id": "94049d45-24f3-4b07-99da-bf7769270820", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165387,7 +165387,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -165398,7 +165398,7 @@ } }, { - "id": "97bc3509-3027-4dbf-8dc3-8e0d29e0dc37", + "id": "b047fd3c-f8bc-443b-ba72-a3b223950b41", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -165436,7 +165436,7 @@ }, "response": [ { - "id": "c03526eb-ad96-444d-86a4-e932f182a7bc", + "id": "9aab0eb6-ff38-45e8-8542-ebeabc93274a", "name": "A work items details object.", "originalRequest": { "url": { @@ -165476,12 +165476,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"EXPIRED\",\n \"type\": \"CERTIFICATION\",\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\": \"RETURNED\",\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\": \"RETURNED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "876872ef-ba19-4894-ad50-671193dc83cb", + "id": "60e77d54-267b-4948-9813-098b55609f43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165521,12 +165521,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c875241-11be-41e6-b323-cbe1a66201ef", + "id": "87fd1934-4f1f-47e1-8827-26084499b04e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165566,12 +165566,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ef0a7f03-a96b-4bb2-a58a-f687798e75da", + "id": "b8924340-16f7-4b99-8a08-e321a64dca00", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165611,7 +165611,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -165622,7 +165622,7 @@ } }, { - "id": "24c11b52-4fae-44d6-ba48-4cfe0362e96e", + "id": "35e727a5-0994-47b0-926c-fe35578e1bd7", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -165660,7 +165660,7 @@ }, "response": [ { - "id": "c0d3a5ac-a81f-4abe-afa8-382343d8ab53", + "id": "33494cd6-26a0-4900-8fd0-f8a9b533f304", "name": "A work items details object.", "originalRequest": { "url": { @@ -165700,12 +165700,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"EXPIRED\",\n \"type\": \"CERTIFICATION\",\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\": \"RETURNED\",\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\": \"RETURNED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d56770b2-f531-408a-9a6a-bc139a6c8f67", + "id": "c4b8681e-18d4-49af-b595-7f4ba315cd02", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165745,12 +165745,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1a2eaef7-aefb-4cad-8f57-f2cb068e26c6", + "id": "25382be0-9a62-472c-b4ab-5e1bb3089c6b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165790,12 +165790,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "47fc680f-25d9-4580-b6e0-2bef7630e683", + "id": "8d69ab93-342f-444b-aeee-144a214621eb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165835,7 +165835,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -165846,7 +165846,7 @@ } }, { - "id": "5c6dedea-925e-47f3-86b5-dbcc2452aa11", + "id": "2378b645-54a3-437c-83a4-a5f35ee09bdc", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -165886,7 +165886,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"nostrud453\": false\n}", + "raw": "{\n \"dolore_590\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -165897,7 +165897,7 @@ }, "response": [ { - "id": "c50d938b-c026-4985-b3da-114da5e3d6e9", + "id": "cd1d3b45-2d62-41c4-a2f4-6bdc2ef64fbc", "name": "A work items details object.", "originalRequest": { "url": { @@ -165933,7 +165933,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"nostrud453\": false\n}", + "raw": "{\n \"dolore_590\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -165950,12 +165950,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"requesterId\": \"\",\n \"requesterDisplayName\": \"\",\n \"ownerId\": \"\",\n \"ownerName\": \"\",\n \"created\": \"\",\n \"modified\": \"\",\n \"description\": \"\",\n \"state\": \"EXPIRED\",\n \"type\": \"CERTIFICATION\",\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\": \"RETURNED\",\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\": \"RETURNED\"\n },\n \"name\": \"\",\n \"completed\": \"\",\n \"numItems\": \"\",\n \"errors\": [\n \"\",\n \"\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae432dfe-74d8-4ebc-867f-c123ce92032d", + "id": "99e43ceb-65f8-407c-ad16-9252f376ee14", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165991,7 +165991,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"nostrud453\": false\n}", + "raw": "{\n \"dolore_590\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -166008,12 +166008,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b332bc90-bda8-4fd1-ae94-687d7b208ae6", + "id": "b0bea401-b0c6-4400-872d-dd307ba81144", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166049,7 +166049,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"nostrud453\": false\n}", + "raw": "{\n \"dolore_590\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -166066,12 +166066,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a7898802-3af7-49a9-937c-0baace7e02eb", + "id": "ba855809-7167-4423-a523-add2809cb5cd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166107,7 +166107,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"nostrud453\": false\n}", + "raw": "{\n \"dolore_590\": false\n}", "options": { "raw": { "headerFamily": "json", @@ -166124,7 +166124,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -166141,7 +166141,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": "cb8f5602-4254-4f76-9b57-75bbc5b22177", + "id": "6ee0bfb1-659d-4de1-9226-e0000f434d38", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -166172,7 +166172,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 \"in_7\": false\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 \"essea\": -30831975,\n \"proident2\": -56591917\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166183,7 +166183,7 @@ }, "response": [ { - "id": "bd672fd3-8295-473b-a234-355052a3abe2", + "id": "ccfeb2c8-1605-4e53-8cc1-f8ae1c8e1076", "name": "The Workflow object", "originalRequest": { "url": { @@ -166217,7 +166217,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 \"in_7\": false\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 \"essea\": -30831975,\n \"proident2\": -56591917\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166234,12 +166234,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 \"cupidatat83\": \"enim et nulla\",\n \"adipisicing9b9\": 38409911.90510544,\n \"non_3a\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\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 \"cillumf53\": -24067145,\n \"aliquip_952\": \"fugiat sint dolore\",\n \"reprehenderit_f5d\": \"do Ut elit ex\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6a478855-7894-4955-983d-5af34ad72e6f", + "id": "43b400bb-6b9c-4c9c-909f-6bda3ac667c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166273,7 +166273,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 \"in_7\": false\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 \"essea\": -30831975,\n \"proident2\": -56591917\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166290,12 +166290,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "11312762-6bc9-48be-836e-85c80dc1b9db", + "id": "da5454e9-7ef9-42bc-ba01-15aa59d20d47", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166329,7 +166329,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 \"in_7\": false\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 \"essea\": -30831975,\n \"proident2\": -56591917\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166351,7 +166351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbcc9dd9-eab4-4530-a1ea-03b4c9dee2a1", + "id": "d3c1b058-b2c6-4783-ade0-4571230168c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166385,7 +166385,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 \"in_7\": false\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 \"essea\": -30831975,\n \"proident2\": -56591917\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166402,12 +166402,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ebc58bb-5951-40f8-8d64-d6a682a58082", + "id": "1982f855-3d72-48a1-bdea-5dfb107c967a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166441,7 +166441,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 \"in_7\": false\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 \"essea\": -30831975,\n \"proident2\": -56591917\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166463,7 +166463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3230f65-8520-4d3a-bd4b-b7ce65be442e", + "id": "cb71c4ed-67e5-4e3c-adf6-40927ede57c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166497,7 +166497,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 \"in_7\": false\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 \"essea\": -30831975,\n \"proident2\": -56591917\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -166514,7 +166514,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -166525,7 +166525,7 @@ } }, { - "id": "f1dec2c6-c6aa-46af-abcc-36d94c8cf03c", + "id": "c2f8a299-bb8a-43ed-a89d-114e3f618eea", "name": "List Workflows", "request": { "name": "List Workflows", @@ -166554,7 +166554,7 @@ }, "response": [ { - "id": "3139a55a-8a67-49ea-aab4-b335a882a3c2", + "id": "d9578c55-14f5-46f2-9a14-23fa2e625fe6", "name": "List of workflows", "originalRequest": { "url": { @@ -166592,12 +166592,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 \"ina_b\": false,\n \"occaecata4c\": -43726782,\n \"enim_8\": \"ut tempor\"\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 \"ut_12f\": true,\n \"adipisicingb\": -66720018.48065317\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 \"ullamco_a0\": -90352884\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\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 \"ut_079\": 40761116.94435558,\n \"minim_bda\": false,\n \"deseruntfde\": \"dolor ea cillum eu aliquip\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ade42835-553c-4634-b306-b88da3d7d877", + "id": "5379b908-b4f5-4ab3-8488-502685671ce1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166635,12 +166635,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "43783503-cac4-4435-bddd-67f2471d6653", + "id": "1b91d5f4-c647-4d83-a7dc-0c9d9ee5cdf4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166683,7 +166683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff72f7d8-578a-4f05-b455-c236fbe6c88c", + "id": "f23c7b41-cec5-42c1-b69e-285124008498", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166721,12 +166721,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e81d83a2-36b9-4989-b2c0-79c7f4bc8da9", + "id": "40d691e7-a4be-454b-8a34-45d4df744b32", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166769,7 +166769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db525c90-5d4b-4b95-917d-c25946196364", + "id": "923c872e-ca39-46b3-8cc6-30b1e1c92a68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166807,7 +166807,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -166818,7 +166818,7 @@ } }, { - "id": "f1bd64f7-5548-43e8-8eb0-764bdf1b91b6", + "id": "e601134d-3e57-4e84-9c57-a12fca06f95c", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -166855,7 +166855,7 @@ }, "response": [ { - "id": "3b038329-1aee-4fae-b9c2-58b8648d8b9e", + "id": "6e8df01e-2c71-4ef6-a23d-7f23106a4d65", "name": "The workflow object", "originalRequest": { "url": { @@ -166894,12 +166894,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 \"cupidatat83\": \"enim et nulla\",\n \"adipisicing9b9\": 38409911.90510544,\n \"non_3a\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\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 \"cillumf53\": -24067145,\n \"aliquip_952\": \"fugiat sint dolore\",\n \"reprehenderit_f5d\": \"do Ut elit ex\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5f1013e-73b1-41a7-a568-873873785a4c", + "id": "fc469454-d0ef-49b2-8842-db5626c44142", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166938,12 +166938,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e8872ef6-6719-4cd5-9f04-f24a4c5a41ca", + "id": "f70be6b9-9d65-4f76-a486-3009471dc859", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166987,7 +166987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "918024ce-ae44-480e-b0f1-8b2af3711d1b", + "id": "54f6c3aa-18d4-4b51-9f01-75ad3b967e51", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167026,12 +167026,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "771d5e38-da85-4ad9-ac53-946db1362980", + "id": "99d54a43-2eff-43cc-99be-9b9c60f30543", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167075,7 +167075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6db55e5-4d09-424c-bba3-9b3ad51f61ce", + "id": "e7685ff6-3c5d-43b7-9077-b8c93693b549", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167114,7 +167114,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -167125,7 +167125,7 @@ } }, { - "id": "1e756dc0-ae73-4087-9804-4a429b6f4fd9", + "id": "b2350d9f-5901-4ce7-bf66-be726ed454e3", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -167164,7 +167164,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 \"labore52f\": -26426253\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 \"tempor1a\": \"quis voluptate ullamco veniam\",\n \"ea_d\": false,\n \"sunt8aa\": \"pariatur do\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167175,7 +167175,7 @@ }, "response": [ { - "id": "bdbf4b6d-bf1d-4389-8bfc-6857d82dfecb", + "id": "e78519da-249b-424c-8656-faa4eaa79d86", "name": "The Workflow object", "originalRequest": { "url": { @@ -167210,7 +167210,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 \"labore52f\": -26426253\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 \"tempor1a\": \"quis voluptate ullamco veniam\",\n \"ea_d\": false,\n \"sunt8aa\": \"pariatur do\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167227,12 +167227,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 \"cupidatat83\": \"enim et nulla\",\n \"adipisicing9b9\": 38409911.90510544,\n \"non_3a\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\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 \"cillumf53\": -24067145,\n \"aliquip_952\": \"fugiat sint dolore\",\n \"reprehenderit_f5d\": \"do Ut elit ex\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f40ac4d-3635-4744-8f56-b7ff23c6341d", + "id": "1c285ef2-f110-493e-b8bc-19c4993a7009", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167267,7 +167267,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 \"labore52f\": -26426253\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 \"tempor1a\": \"quis voluptate ullamco veniam\",\n \"ea_d\": false,\n \"sunt8aa\": \"pariatur do\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167284,12 +167284,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d899f6be-febf-485b-8220-dabf5168f373", + "id": "f405e51c-b78e-40d9-8085-db02b4ed5ec4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167324,7 +167324,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 \"labore52f\": -26426253\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 \"tempor1a\": \"quis voluptate ullamco veniam\",\n \"ea_d\": false,\n \"sunt8aa\": \"pariatur do\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167346,7 +167346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e11ced1-e2cc-4af3-a022-05588dd3254f", + "id": "bb52ca53-ed28-4fdd-a6db-78a461ab8ac5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167381,7 +167381,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 \"labore52f\": -26426253\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 \"tempor1a\": \"quis voluptate ullamco veniam\",\n \"ea_d\": false,\n \"sunt8aa\": \"pariatur do\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167398,12 +167398,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e874be35-d579-4d22-81b5-0dbde9027cb0", + "id": "b0781360-bed8-427a-9836-3bb67fa4a6f1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167438,7 +167438,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 \"labore52f\": -26426253\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 \"tempor1a\": \"quis voluptate ullamco veniam\",\n \"ea_d\": false,\n \"sunt8aa\": \"pariatur do\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167460,7 +167460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb8bf5ff-d6d4-4796-93c7-225bc6b51fb3", + "id": "92569717-7a67-4ddf-bc52-15deea6f7bb4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167495,7 +167495,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 \"labore52f\": -26426253\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 \"tempor1a\": \"quis voluptate ullamco veniam\",\n \"ea_d\": false,\n \"sunt8aa\": \"pariatur do\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167512,7 +167512,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -167523,7 +167523,7 @@ } }, { - "id": "d4398f1a-1bf6-4e2e-a49d-392452ca5d4f", + "id": "55c4fe03-b13e-4a61-aac5-efecdf3572ce", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -167562,7 +167562,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -167573,7 +167573,7 @@ }, "response": [ { - "id": "997d94a4-3bde-4077-801f-dda84aaf5837", + "id": "4496d54f-27d0-45cc-950d-b5bf0fb2a92c", "name": "The Workflow object", "originalRequest": { "url": { @@ -167608,7 +167608,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -167625,12 +167625,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 \"cupidatat83\": \"enim et nulla\",\n \"adipisicing9b9\": 38409911.90510544,\n \"non_3a\": true\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\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 \"cillumf53\": -24067145,\n \"aliquip_952\": \"fugiat sint dolore\",\n \"reprehenderit_f5d\": \"do Ut elit ex\"\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"\",\n \"filter.$\": \"\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "374373dc-3640-418b-a9a8-0633f228db10", + "id": "cc1c186e-9ec4-4316-8ebb-c9f5fa37a310", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167665,7 +167665,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -167682,12 +167682,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70cd105c-d487-4f95-8801-ad95a526e877", + "id": "b740a844-c23d-437e-9015-ac07013eccb4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167722,7 +167722,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -167744,7 +167744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01da3fcd-41ff-467a-a9e5-e86dc3502d17", + "id": "1d98ae2a-be6e-432a-b9d5-6acef98d4b55", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167779,7 +167779,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -167796,12 +167796,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "79e2eee9-d523-48ba-8991-0ef907591e16", + "id": "b6ea65ab-8962-4a5c-881b-917651da335a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167836,7 +167836,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -167858,7 +167858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97a37caf-97fe-4f7c-8af9-b6f650194519", + "id": "b7ea1fea-3dfa-414c-b41e-f25b656fcabd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167893,7 +167893,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "[\n {\n \"op\": \"remove\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", + "raw": "[\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"move\",\n \"path\": \"\",\n \"value\": \"\"\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -167910,7 +167910,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -167921,7 +167921,7 @@ } }, { - "id": "0577562d-6730-4cc6-b38d-0809c6d5def2", + "id": "de9d0efa-a6bc-4679-bc86-607bf49163dc", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -167958,7 +167958,7 @@ }, "response": [ { - "id": "e2593962-de46-4b34-808c-1166b5e2fa52", + "id": "95fd1ce4-6c64-4883-9e57-1a4af85162c4", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -167992,7 +167992,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3d5e9eeb-7f34-4dc1-8409-537cb8a8e872", + "id": "6583f0b6-63d8-4f70-8555-7cb05aac9b90", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168031,12 +168031,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "202a437a-61a3-420d-a84d-efb80b951d2b", + "id": "7e63179c-24e1-4330-9fec-538668fc4248", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168080,7 +168080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "783e98fe-f520-4215-8554-0f210d8fc5fc", + "id": "8956890c-cd38-4461-9106-b0d5e7bc5947", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168119,12 +168119,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "905bad95-85ff-4a6c-b0b5-d446d961d0aa", + "id": "536d9a11-0468-4985-b29f-178d5dc26fcf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168168,7 +168168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d829293-f1fc-434e-bc56-bca16440de82", + "id": "9909f3d4-8c7d-4c2a-bb6a-e01298039c65", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168207,7 +168207,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -168218,7 +168218,7 @@ } }, { - "id": "8d82291c-6c17-4087-9b5a-82c50c369200", + "id": "ef564c3a-6f9d-43ec-889a-955310ed25f2", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -168269,7 +168269,7 @@ }, "response": [ { - "id": "1e42333c-0e83-4b33-9f39-00cb57b5da92", + "id": "b8f5fc71-cd03-46d9-8199-e6e5dfcb2c69", "name": "The Workflow object", "originalRequest": { "url": { @@ -168327,7 +168327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed55c4c3-b79e-4a21-a74a-833c0aa01b5f", + "id": "d033040d-3f45-47f9-8220-cea49d364130", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168380,12 +168380,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bda8fe87-7cce-48db-af47-72bbf9d9a8b5", + "id": "bfa907c2-e2b0-4851-a119-7f03933ebd9d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168443,7 +168443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa21d94e-5d78-416e-a89f-e7b0620e5466", + "id": "fac3304a-50d3-4c9c-99a0-07762591d559", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168496,12 +168496,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1d6e36b1-5f85-432b-a94b-754c59af16a0", + "id": "36d495c1-b5bf-4cd4-bc5f-652893a0f7c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168559,7 +168559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d2bd7ef-57d4-4da0-a554-d24ada7881a0", + "id": "6860e679-2597-4e58-8c56-5ea2ad27f63b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168612,7 +168612,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -168623,7 +168623,7 @@ } }, { - "id": "98afd052-3258-46ea-816a-e6dbf2d05832", + "id": "2641518d-5626-4899-b6c5-c0030097bd72", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -168698,7 +168698,7 @@ }, "response": [ { - "id": "65aee36d-4d38-482c-ad9b-af1a43aeecb9", + "id": "6e9660ec-b20d-4e62-a51b-5868d53de480", "name": "List of workflow executions for the given workflow", "originalRequest": { "url": { @@ -168775,12 +168775,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"workflowId\": \"\",\n \"requestId\": \"\",\n \"startTime\": \"\",\n \"closeTime\": \"\",\n \"status\": \"Completed\"\n },\n {\n \"id\": \"\",\n \"workflowId\": \"\",\n \"requestId\": \"\",\n \"startTime\": \"\",\n \"closeTime\": \"\",\n \"status\": \"Completed\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"workflowId\": \"\",\n \"requestId\": \"\",\n \"startTime\": \"\",\n \"closeTime\": \"\",\n \"status\": \"Completed\"\n },\n {\n \"id\": \"\",\n \"workflowId\": \"\",\n \"requestId\": \"\",\n \"startTime\": \"\",\n \"closeTime\": \"\",\n \"status\": \"Running\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "897e5645-765c-4d27-8579-d53199e287a2", + "id": "6917a637-aee1-4ca1-a763-d548a8fcb071", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168857,12 +168857,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "60ca40ac-81dd-4b9f-b94e-62be924c2c8f", + "id": "39872dfc-726c-405e-a9c4-0ce7ea1eb320", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168944,7 +168944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80aa36d3-e859-4550-a106-4d53eb5e9293", + "id": "c4fd8437-879c-4546-ba27-62f0ef8eefbb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169021,12 +169021,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6af9569-c89f-4285-ae91-7bc9864a2bbc", + "id": "356e50d8-b8aa-4d9c-9de8-74b4d8cc701b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169103,12 +169103,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5103e7cf-0d7c-4dc1-88aa-589ab9613ec1", + "id": "bdc91ccd-6e14-423b-b456-57bd24c9ae19", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169190,7 +169190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57ecc3ef-f880-4555-a0cb-b9e70478dba0", + "id": "00aea9c3-9ac6-46fd-b1a8-9cf5454b05b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169267,7 +169267,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -169278,7 +169278,7 @@ } }, { - "id": "7e4573b8-c05c-4fd8-ac1d-fa86f06b95ba", + "id": "75aa0b15-d899-4f94-8e67-f6576c851a4f", "name": "Get a Workflow Execution", "request": { "name": "Get a Workflow Execution", @@ -169315,7 +169315,7 @@ }, "response": [ { - "id": "542e0609-218e-463b-8f08-4faf64e00d10", + "id": "7e5177f5-b789-4032-81b1-0b538ed9c1df", "name": "The workflow execution", "originalRequest": { "url": { @@ -169354,12 +169354,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"magna Excepteur\",\n \"workflowId\": \"dolor mollit commodo ex\",\n \"requestId\": \"do officia\",\n \"startTime\": \"2015-04-01T00:21:42.767Z\",\n \"closeTime\": \"1961-06-11T22:54:27.785Z\",\n \"status\": \"Running\"\n },\n {\n \"id\": \"sint anim dolore ame\",\n \"workflowId\": \"quis\",\n \"requestId\": \"culpa dolor\",\n \"startTime\": \"1944-11-22T12:11:41.565Z\",\n \"closeTime\": \"2022-09-27T11:13:27.115Z\",\n \"status\": \"Failed\"\n }\n]", + "body": "[\n {\n \"id\": \"do labore\",\n \"workflowId\": \"irure ut deserunt\",\n \"requestId\": \"dolor in elit\",\n \"startTime\": \"1987-10-14T17:23:02.323Z\",\n \"closeTime\": \"1983-07-31T14:16:19.255Z\",\n \"status\": \"Failed\"\n },\n {\n \"id\": \"nulla eu ea sint\",\n \"workflowId\": \"deserunt\",\n \"requestId\": \"anim non id\",\n \"startTime\": \"1993-04-15T15:03:35.170Z\",\n \"closeTime\": \"1953-12-16T16:41:24.941Z\",\n \"status\": \"Running\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1dcbf6be-63fe-4df4-ac93-05f46ee1ff16", + "id": "f6089775-f2f4-4005-abee-8c47c60e66ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169398,12 +169398,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9882df35-895a-47ad-b64c-175160804fd5", + "id": "1bd99a35-bd1e-4963-8e19-e3e2b92c6987", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169447,7 +169447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bec0f5d-d2e4-47e3-a183-76af34a98eaf", + "id": "bb04bfc8-be79-4615-b57f-cc6b2efa595a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169486,12 +169486,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c8bd4da-3354-420b-b4b2-e32ff09eda4b", + "id": "ba2aa6f1-375c-4196-822b-8a118df027bd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169530,12 +169530,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0be9dfc8-9973-4e06-9dba-124578f283fb", + "id": "1ddb9d00-fb6b-4f89-8007-3f0a65882b4b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169579,7 +169579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2255c37e-714e-4940-8b44-b5c3d4122d3d", + "id": "fa297949-e541-45be-b35f-dbaf3dd52ddc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169618,7 +169618,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -169629,7 +169629,7 @@ } }, { - "id": "9204dfe8-a3d2-4f78-9d37-4b37e3c58622", + "id": "754a5c43-660a-4568-9566-6b4d2124768f", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -169667,7 +169667,7 @@ }, "response": [ { - "id": "f41e3525-2103-4f15-a693-a4c935b87693", + "id": "fab6daba-bf8b-45d2-8e2a-4919a22e8586", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -169707,12 +169707,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"type\": \"ActivityTaskFailed\",\n \"timestamp\": \"\",\n \"attributes\": {}\n },\n {\n \"type\": \"WorkflowTaskStarted\",\n \"timestamp\": \"\",\n \"attributes\": {}\n }\n]", + "body": "[\n {\n \"type\": \"WorkflowTaskScheduled\",\n \"timestamp\": \"\",\n \"attributes\": {}\n },\n {\n \"type\": \"ActivityTaskStarted\",\n \"timestamp\": \"\",\n \"attributes\": {}\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "17368692-6a6c-48a2-aae9-8e694814f645", + "id": "412c1941-d589-4f24-93e4-07441c34cdba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169752,12 +169752,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f93e048c-d96a-4e73-b270-023e9b20dc5e", + "id": "cb2eba55-1f82-4321-aa7b-63daa0cfb552", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169802,7 +169802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e307eb7-964f-4a8b-a497-289fea5b115e", + "id": "cdfb7db5-0317-425f-a6ee-bffd4ff2ffa1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169842,12 +169842,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "479c5695-9cdd-431f-9b6e-2b5c630eddff", + "id": "7dcaf6b3-7d2e-41bf-956e-9740bed3a7a6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169887,12 +169887,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7ddd4236-01a7-4643-af18-cb4792433236", + "id": "e447e075-551e-4c33-a8c0-5f73ba76ad75", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169937,7 +169937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "616c3987-7d16-4230-b13a-39d5c47fb153", + "id": "3b3ae633-c6e2-4bea-94cc-6c98e49e0115", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169977,7 +169977,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -169988,7 +169988,7 @@ } }, { - "id": "6efeb839-3daa-44e2-a6a2-d78e0483d57e", + "id": "2f8a9ce2-104d-474c-8d97-4133234db1bb", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -170026,7 +170026,7 @@ }, "response": [ { - "id": "ea54954a-06ab-4a95-81bd-8bab532df161", + "id": "e6d390d4-6f52-4518-a1e3-5dc6fee7c726", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -170061,7 +170061,7 @@ "_postman_previewlanguage": "text" }, { - "id": "124e1f55-8166-445f-a0f1-49fe6bfbff9c", + "id": "83966920-13ff-456c-b3d1-65b4f791221d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170101,12 +170101,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f51ac496-650b-4632-ad4f-fdfd016d7c6d", + "id": "6130b0d9-8080-4d63-a103-664223c14bca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170151,7 +170151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da78ae6f-8062-43a9-8435-f7a5857ff443", + "id": "af5c97d5-a6d1-40da-9092-b881b05974bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170191,12 +170191,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57b1d48b-1d10-4ca7-b122-e1c6ab165c1c", + "id": "6aa0ccbe-2ca0-4d49-a2d2-8b3a24c27acf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170236,12 +170236,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f916f29-4095-4bd5-b82f-83f4f03a0118", + "id": "ac773963-84ac-4277-8ed7-05ba5c98cf9f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170286,7 +170286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb72aeba-6fb0-47b8-b9be-3c9fbdb9a1fd", + "id": "8dd9f7be-b3df-42c7-95cc-e0e6ff984872", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170326,7 +170326,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -170337,7 +170337,7 @@ } }, { - "id": "0d56292b-16d4-496f-9578-470f61832f0e", + "id": "03a647a3-e748-40b2-b851-4ed0d3114fe2", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -170385,7 +170385,7 @@ }, "response": [ { - "id": "e579eea5-30e0-42f5-8364-67f31e13ec0d", + "id": "8878d1c5-f9a5-4b01-8675-4b639d46ff2b", "name": "List of workflow steps", "originalRequest": { "url": { @@ -170442,12 +170442,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\": \"keyValuePairs\"\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\": \"select\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"email\"\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\": \"keyValuePairs\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"multiType\"\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\": \"secret\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"object\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6c6bc4d-7e02-474a-9054-a3a7e645eb71", + "id": "3836bba9-a61f-4ccb-859c-8c5f8cb0884a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170504,12 +170504,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e983b622-ea49-4bbe-96b9-1fc0a95e98f6", + "id": "31abd805-75ce-4010-8d48-5defbbace1df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170571,7 +170571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef50ad57-18e1-4682-bb17-cbc41582bb59", + "id": "625912de-2b33-41e8-b5b2-881dc389cef5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170628,12 +170628,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f2e953b4-8668-43a9-94f7-edb9fb405ad6", + "id": "7c47eae2-acde-43c9-a51d-31970146341d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170695,7 +170695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3c758ef-6a16-41ed-a91f-9ce7c2aa5413", + "id": "5e1b7975-f851-44f8-839f-d1ef96e13e69", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170752,7 +170752,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -170763,7 +170763,7 @@ } }, { - "id": "3621dfb2-a9e6-45d3-9c9e-04ea95959a27", + "id": "a3431704-aa15-43e3-b0e0-4c0095f8f4e6", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -170821,7 +170821,7 @@ }, "response": [ { - "id": "b09ddc55-1006-4d36-8679-1560c4964ca8", + "id": "bdd46f29-7531-4056-bab3-966e43f88e0d", "name": "List of workflow actions", "originalRequest": { "url": { @@ -170888,12 +170888,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\": \"keyValuePairs\"\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\": \"select\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"email\"\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\": \"keyValuePairs\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"multiType\"\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\": \"secret\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"object\"\n }\n ],\n \"isDynamicSchema\": \"\",\n \"outputSchema\": {}\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e115e7d0-d638-4aa7-90c9-05c136442182", + "id": "a341e5f4-fd5d-4b29-bcb8-02ad9e1000c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170960,12 +170960,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1a3bc0f-4283-452d-ab94-e5ed20a614a4", + "id": "678cbc97-74be-4cc5-bace-5bb002c75196", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171037,7 +171037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4932a45-03d3-4cec-9055-885e78be4099", + "id": "c9a96794-caab-4b9e-ab59-d6537cba01c5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171104,12 +171104,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd6c5aa1-b706-4b7f-9025-e8e695e5b76c", + "id": "47222606-8ae0-49f6-bbaf-6c5395177b9c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171181,7 +171181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a95d89b8-8365-47ec-b023-111df662c86b", + "id": "1f4934b7-2ea1-4eec-9765-7c8c05934511", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171248,7 +171248,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -171259,7 +171259,7 @@ } }, { - "id": "4cfb0d83-b4f6-4663-b3e7-396f645d53e6", + "id": "4d06816b-5a92-449b-a32a-3a6238a76a73", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -171317,7 +171317,7 @@ }, "response": [ { - "id": "f6696817-25a9-4230-96e6-58aea9072051", + "id": "739c2d8c-6bbc-4fad-bfc3-ad5653d511da", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -171384,12 +171384,12 @@ "value": "application/json" } ], - "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\": \"duration\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"textarea\"\n }\n ]\n },\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\": \"string\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"boolean\"\n }\n ]\n }\n]", + "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\": \"advancedToggle\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"toggle\"\n }\n ]\n },\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\": \"keyValuePairs\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"select\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b97b48d-706a-46c6-8568-05c9f3abec2c", + "id": "5a78df46-8cbe-4172-8db1-dc998ccd5e10", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171456,12 +171456,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eb2634c3-e688-40fb-85d1-553901eec83b", + "id": "df2fd4d1-d760-496b-a64e-88b06e8b366c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171533,7 +171533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d5fcddc-092e-45a3-a988-1dd6ed461a7e", + "id": "2f26bf90-5d33-4d5e-8cfe-b139abdbafc1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171600,12 +171600,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b88f2404-fa6e-4aeb-b53e-c5208ce609b6", + "id": "6e950a12-6836-4a0a-825a-5518624f2395", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171677,7 +171677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c74d400-1d05-466e-9d5c-c546b30c76c8", + "id": "f04685b6-4768-4343-8673-3d843bcade5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171744,7 +171744,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -171755,7 +171755,7 @@ } }, { - "id": "e1f5a87f-8878-46f7-b3cf-d8e4ea96c2ba", + "id": "d4a77935-85a7-43f2-b101-53bfdaadaad6", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -171785,7 +171785,7 @@ }, "response": [ { - "id": "417dcffd-2fb4-411f-847d-cd43f75b17a5", + "id": "3d6a2f9b-c1b3-4e42-909f-dab75fc449c1", "name": "List of workflow operators", "originalRequest": { "url": { @@ -171824,12 +171824,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\": \"email\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"jsonpath\"\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\": \"governanceGroupPicker\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"checkbox\"\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\": \"json\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"select\"\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\": \"emailPicker\"\n },\n {\n \"helpText\": \"\",\n \"label\": \"\",\n \"name\": \"\",\n \"required\": \"\",\n \"type\": \"number\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af1952e3-b4ae-413f-995a-1d46c6050065", + "id": "9cea155e-6b6b-4c51-b99c-1c22bfb3b852", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171868,12 +171868,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a622f2fb-764c-4942-84f9-f325255310f0", + "id": "62c1bf71-2250-4833-8f1c-dca8bed5f72c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171917,7 +171917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11e686f5-874e-4c41-b726-61d32f77d63c", + "id": "3b7e5ec4-b80c-4c80-bdc0-2eb8df6e5e46", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171956,12 +171956,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2fb00287-b6c3-46fb-939c-a674f7abcab2", + "id": "928c890e-644e-4d90-9d54-61a025633abf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172005,7 +172005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93a9e68c-3644-4754-bf17-ca51e18206a5", + "id": "f17a47af-9e6a-42b5-8e50-ed450c8641b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172044,7 +172044,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -172055,7 +172055,7 @@ } }, { - "id": "994fd97f-54bd-4933-b3c1-98daf22a6876", + "id": "ee389658-e74b-4538-9a19-2147e3923a50", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -172094,7 +172094,7 @@ }, "response": [ { - "id": "90fd7311-6abe-4229-9ad3-cec14f2e1563", + "id": "c06f6c7a-2fb0-4d39-a634-76ecc738c989", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -172140,7 +172140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8da3791-7d47-4e22-857e-d988259b28db", + "id": "ecca5ba3-509b-4c5a-bdd5-687f24a59ccd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172181,12 +172181,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97a79435-992a-4007-8a55-704f9c2e63b2", + "id": "2bfbfc29-dbc6-4e18-a78a-2b490c96b3ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172232,7 +172232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f536d8e0-c19d-47d2-b241-e91c7c25432e", + "id": "1d75433e-317a-417b-a9e0-e56885273499", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172273,12 +172273,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "345b4f0f-810a-4354-b368-2b506c68916a", + "id": "5e6dcd90-44f4-4299-80d8-5839a2e7df42", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172324,7 +172324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "523edc34-9508-4434-b9a7-e82dd1c158f8", + "id": "6f9bea3c-dec0-425d-a279-6939765adba1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172365,7 +172365,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -172376,7 +172376,7 @@ } }, { - "id": "2afaea7f-56df-4919-96d6-cdf1e5c495c4", + "id": "a1e680bc-15c9-4567-b7ab-31f61b0f43db", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -172428,7 +172428,7 @@ }, "response": [ { - "id": "44cbbe14-bdd5-439f-a953-79f61f53a79e", + "id": "a3dd4877-7e44-4eec-822e-100b0ca6b399", "name": "The Workflow object", "originalRequest": { "url": { @@ -172487,7 +172487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc7c349d-dd39-4d53-a195-373b007aa099", + "id": "e0db97e2-69b1-4afa-9457-ef80c65dab81", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172541,12 +172541,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f20e8dff-eee5-4639-88ae-dd665333464f", + "id": "4f9769de-8eca-46a5-9fb7-8cf2f227f676", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172605,7 +172605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be812d17-8506-4449-b0a6-59594709d320", + "id": "f68ccf1c-7f78-44c4-8a1b-191d24c8d541", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172659,12 +172659,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "08fb26c7-4b00-4502-8a80-978ccdcffb2d", + "id": "a4405029-85f4-439b-9a94-862531bc6237", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172723,7 +172723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f73c666a-e879-455e-8967-3ec9192a0049", + "id": "3b9f0c2c-36f7-4666-9b08-ede1545d7634", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172777,7 +172777,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -172788,7 +172788,7 @@ } }, { - "id": "1ad1e3bc-e497-455d-86fd-23d6cacc58e6", + "id": "98e0cf7c-81ad-49b8-af56-84a7ae23cb1b", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -172841,7 +172841,7 @@ }, "response": [ { - "id": "48021668-18b2-4df3-b110-910856c4c81c", + "id": "d26f1e6f-a666-4819-a238-c1d56fef7817", "name": "Responds with the test input", "originalRequest": { "url": { @@ -172901,7 +172901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46e7518a-5b8c-4bc1-8163-56d70b552a78", + "id": "db899700-5737-45b5-aced-a8d78b7e72ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172956,12 +172956,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3e1d9c4-941c-4705-80b5-24a5c68dc38a", + "id": "0ace6244-fbb9-49c9-af97-720eb6715686", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173021,7 +173021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c19035a-8d29-45d2-a056-551e37fb1d6a", + "id": "9c744615-daf4-49df-8e62-ecf50cedd5fe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173076,12 +173076,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2a3cf716-f1e5-440d-a72d-ebe368a6ad4b", + "id": "ec1d398e-945a-4476-a4a9-9c56134cffc9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173141,7 +173141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e023ed9f-3078-4e00-aeb5-f93f4e9a3891", + "id": "af7ced28-dabe-40b5-9938-cbf0db04583b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173196,7 +173196,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -173213,7 +173213,7 @@ "description": "", "item": [ { - "id": "8d629a81-3418-4809-a1c8-c8d5a56ee529", + "id": "d602c4cb-8b02-477c-acc4-bf25838389ef", "name": "List Reassignment Config Types", "request": { "name": "List Reassignment Config Types", @@ -173243,7 +173243,7 @@ }, "response": [ { - "id": "f976ade7-1444-4c37-9ad7-144c7759052b", + "id": "5ad5e544-381e-4b78-ab7b-5052cd1f3143", "name": "List of Reassignment Configuration Types", "originalRequest": { "url": { @@ -173282,12 +173282,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"internalName\": \"CERTIFICATIONS\",\n \"displayName\": \"\",\n \"description\": \"\"\n },\n {\n \"internalName\": \"CERTIFICATIONS\",\n \"displayName\": \"\",\n \"description\": \"\"\n }\n]", + "body": "[\n {\n \"internalName\": \"MANUAL_TASKS\",\n \"displayName\": \"\",\n \"description\": \"\"\n },\n {\n \"internalName\": \"CERTIFICATIONS\",\n \"displayName\": \"\",\n \"description\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0be3c276-636b-42d3-8830-659ecbd65d1c", + "id": "17b97fb0-2d81-43ac-8f80-b25ec596146c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173326,12 +173326,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f0195516-f516-4b76-88c3-9e10d1f625ef", + "id": "7fbb7581-d5aa-45be-8ac0-9f9db26b0716", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173375,7 +173375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76a70a00-39ae-44c3-942d-d1946f868e19", + "id": "9fdd942c-69ab-4647-9125-0079a8e600ed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173414,12 +173414,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "627e6adb-2678-4982-8c8c-7f467ec42a88", + "id": "1f5a9ec4-cda4-4e3d-8ab9-3d582d6974e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173463,7 +173463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b95eff96-532d-4b40-875b-a966f8067dee", + "id": "739fa4c9-8db5-4c4e-9174-5fb0baa63385", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173502,7 +173502,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -173513,7 +173513,7 @@ } }, { - "id": "6b9d8961-7114-47c1-868b-b3ef663310e0", + "id": "e5876976-d90a-4a97-af19-8c179bb32d47", "name": "List Reassignment Configurations", "request": { "name": "List Reassignment Configurations", @@ -173542,7 +173542,7 @@ }, "response": [ { - "id": "1b9e8877-fc80-44b6-9ee0-f799cbd166ee", + "id": "364a1179-6034-47c9-ae32-10c95700702c", "name": "A list of Reassignment Configurations for an org", "originalRequest": { "url": { @@ -173580,12 +173580,12 @@ "value": "application/json" } ], - "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\": \"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 {\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\": \"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]", + "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\": \"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 {\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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc83a48f-e751-4579-84fa-9403c1e1e4a9", + "id": "7e667715-bd23-4167-9fc1-10450a2fe438", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173623,12 +173623,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b1b433eb-753a-4430-bf3f-6445d9c61054", + "id": "25bd8425-38f3-415c-b84a-1b8071e2d2c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173671,7 +173671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b15771a1-a778-44bb-a091-3f961d725926", + "id": "2fab2a30-f17f-4a0a-a247-8c2c56c3d80b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173709,12 +173709,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ddf09eed-4161-421e-aaf8-4015b77f5cd1", + "id": "b5ef9fc7-ec18-49fc-90f8-43f3d624f92a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -173752,12 +173752,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26afa67c-e998-4038-a7a4-765934ed243d", + "id": "badbaa9f-15f9-4a44-bc8b-c6c31948ebd4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173800,7 +173800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faf163fd-c6e3-4fe0-98a8-5d37119d8a48", + "id": "8a2c13ce-a9a8-478a-907e-75e9bb7cea5d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173838,7 +173838,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -173849,7 +173849,7 @@ } }, { - "id": "a8fa62f2-7ab4-4b1e-93ff-704852645f16", + "id": "e5ab01e4-b5af-41ec-a4e8-b415e6409507", "name": "Create a Reassignment Configuration", "request": { "name": "Create a Reassignment Configuration", @@ -173880,7 +173880,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -173891,7 +173891,7 @@ }, "response": [ { - "id": "b963f94f-a218-4631-90c6-cb395072275e", + "id": "796452e5-af00-4adb-93cb-80477fabd730", "name": "The newly created Reassignment Configuration object", "originalRequest": { "url": { @@ -173925,7 +173925,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -173942,12 +173942,12 @@ "value": "application/json" } ], - "body": "{\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}", + "body": "{\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\": \"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": "ca3c1690-d015-4c4a-9658-4ac49445ac76", + "id": "ec9a50d2-9e7b-4085-9ffd-7c69659f8751", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173981,7 +173981,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -173998,12 +173998,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3fbe316a-54e5-43cb-a2fe-8dd471fe80f2", + "id": "55ab2c25-3f23-4f51-81c4-5078746a39d8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174037,7 +174037,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -174059,7 +174059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63c3610f-11e1-4828-9cfc-9a6bc6f77e1e", + "id": "3ee99eeb-d63d-4b17-9746-7523a3afe7c8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174093,7 +174093,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -174110,12 +174110,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "19233a27-45c2-436d-9b59-f190c6d9d21f", + "id": "501e3d9a-2dd8-4a6c-8b98-a2353971de0a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174149,7 +174149,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -174171,7 +174171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7139b7bb-8d33-4216-930c-89ef3fe7e9db", + "id": "f585a5fe-64eb-4ab8-9540-e6535a617942", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174205,7 +174205,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -174222,7 +174222,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -174233,7 +174233,7 @@ } }, { - "id": "6b02cc78-b41e-46d5-99d2-02e1d8334d06", + "id": "60610e74-d655-49f4-ae8c-315b8b1f00d6", "name": "Get Reassignment Configuration", "request": { "name": "Get Reassignment Configuration", @@ -174270,7 +174270,7 @@ }, "response": [ { - "id": "01e16959-59d9-4967-8e97-4b0975d6130a", + "id": "247a38b7-5d94-4b4a-ab95-7e9b71a01d95", "name": "Reassignment Configuration for an identity", "originalRequest": { "url": { @@ -174309,12 +174309,12 @@ "value": "application/json" } ], - "body": "{\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}", + "body": "{\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\": \"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": "19da36cc-10e1-4148-b5b9-2316d5737f82", + "id": "06720d92-c8e6-4e0b-8818-666de30db9c6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174353,12 +174353,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6fb6a536-3bae-4090-9ab1-f51abeb13193", + "id": "d5aab6d0-90a8-4b7a-b333-74b1ca155840", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174402,7 +174402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c830983e-3c33-4068-8bc2-60a59154b59d", + "id": "3dad4596-5397-456d-a3ea-2eced07b4f49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174441,12 +174441,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "340bedc3-591e-4a08-b4da-c093a0e6d8ff", + "id": "0fad2025-0fe3-432e-9d7f-65b19456d8cf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -174485,12 +174485,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b9f928ad-1362-4529-b9fb-5375fe2b56a0", + "id": "9b08027c-2ffd-438b-90a7-6c6dd17be43b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174534,7 +174534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af3f5c70-b5bc-4db9-b2ac-3a8509be9b40", + "id": "11133ea1-048b-4753-aa54-bd314074e03a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174573,7 +174573,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -174584,7 +174584,7 @@ } }, { - "id": "4acf53de-fc56-4cbf-a5c7-e60e62d8f2de", + "id": "8a3e69fb-b57d-456d-bcba-c59a3d29511f", "name": "Update Reassignment Configuration", "request": { "name": "Update Reassignment Configuration", @@ -174623,7 +174623,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -174634,7 +174634,7 @@ }, "response": [ { - "id": "01605983-3fc9-4192-8a1e-dca1b3df7e14", + "id": "4846035a-2f68-4769-b0e6-09a64158de61", "name": "Reassignment Configuration updated", "originalRequest": { "url": { @@ -174669,7 +174669,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -174686,12 +174686,12 @@ "value": "application/json" } ], - "body": "{\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}", + "body": "{\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\": \"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": "a8eb5deb-a381-4450-bb90-d902ff020723", + "id": "04dc10de-7c9a-4d14-a52b-55db36fa1035", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174726,7 +174726,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -174743,12 +174743,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46ed5ada-a710-43e4-869b-9dae2679706d", + "id": "d7701fc9-d6f2-496b-bcad-09cfca807888", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174783,7 +174783,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -174805,7 +174805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b71070ca-3c05-4f25-b091-61f278c86c83", + "id": "8942a1bf-5e28-4cb9-8e87-37073693584c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174840,7 +174840,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -174857,12 +174857,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2374e862-bd8f-4e8c-ab9c-5be2ec9a6dac", + "id": "5f10c159-03be-4914-9b6b-30dd31653245", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174897,7 +174897,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -174919,7 +174919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55fd0d02-4181-4988-ae17-c36233204d5c", + "id": "711c2daf-5e55-4ef5-b102-3f1bda791a4a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174954,7 +174954,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"CERTIFICATIONS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", + "raw": "{\n \"reassignedFromId\": \"\",\n \"reassignedToId\": \"\",\n \"configType\": \"MANUAL_TASKS\",\n \"startDate\": \"\",\n \"endDate\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -174971,7 +174971,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -174982,7 +174982,7 @@ } }, { - "id": "cd732ce3-6d21-4e1b-b104-47f33adf6e96", + "id": "d485f2c9-4f1c-4776-9ef9-bd03d1cc7160", "name": "Delete Reassignment Configuration", "request": { "name": "Delete Reassignment Configuration", @@ -175019,7 +175019,7 @@ }, "response": [ { - "id": "e7ad5fee-7766-43b0-82df-89b884607a2f", + "id": "85ce7180-74f2-43d9-a94c-e63c4b54d4a8", "name": "Reassignment Configuration deleted", "originalRequest": { "url": { @@ -175053,7 +175053,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7475aa5f-a2a0-4d5b-aebf-20743fb0df0f", + "id": "dc45a068-9e88-49e6-90da-8aea6942010e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175092,12 +175092,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52c6599a-baf7-4241-9362-8f225099d135", + "id": "6cbe0db6-0dda-48ca-8b7e-952f6382df67", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175141,7 +175141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d526ae6f-1ddd-4554-bc52-acaa1d38e805", + "id": "d11f157f-97ec-4756-9273-94ed61663ec4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175180,12 +175180,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "689021fd-59c3-4f16-b0bc-57094c52c80b", + "id": "b3c81ee1-0038-428b-bfa0-33c772afd132", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175229,7 +175229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec6ea921-19a7-4cf2-81e9-51e73999a876", + "id": "a3f5f72a-07bc-43b7-ab27-4414b5f19e26", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175268,7 +175268,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -175279,7 +175279,7 @@ } }, { - "id": "b6485cad-a39c-4510-9fa7-f7200e910722", + "id": "11775b99-5359-4641-82a0-0924c714d5f2", "name": "Evaluate Reassignment Configuration", "request": { "name": "Evaluate Reassignment Configuration", @@ -175326,7 +175326,7 @@ }, { "type": "any", - "value": "CERTIFICATIONS", + "value": "MANUAL_TASKS", "key": "configType", "disabled": true } @@ -175343,7 +175343,7 @@ }, "response": [ { - "id": "680e0314-d911-4778-86b2-11c7bee15998", + "id": "1981a27f-88d6-4869-a100-0969b8ae9b60", "name": "Evaluated Reassignment Configuration", "originalRequest": { "url": { @@ -175394,12 +175394,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"reassignToId\": \"\",\n \"lookupTrail\": [\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n },\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT,\"\n }\n ]\n },\n {\n \"reassignToId\": \"\",\n \"lookupTrail\": [\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"AUTO_ESCALATION,\"\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\": \"SELF_REVIEW_DELEGATION\"\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\": \"AUTO_ESCALATION,\"\n },\n {\n \"reassignedToId\": \"\",\n \"reassignedFromId\": \"\",\n \"reassignmentType\": \"SELF_REVIEW_DELEGATION\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "25ae254c-4752-4ec9-9a99-a7a6ad9b491c", + "id": "2b371c83-df34-4cb0-be64-14e7f33b908b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175450,12 +175450,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8725ce0f-dbc4-4cf4-aebd-769bcbbb7fde", + "id": "6a9f461f-9b9d-40bb-9a48-d3b0897c3910", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175511,7 +175511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "891554ab-d45a-4c06-b7e5-9bbad74fd593", + "id": "d3f53eb9-907c-479c-8e0e-379132b009e6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175562,12 +175562,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f54455f5-9e3d-46f6-aea1-d34855acbd41", + "id": "a50b82eb-212f-4b77-a7e5-c5c61c281153", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175623,7 +175623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5af6efd8-8ba2-496b-8a3b-487608a38dcb", + "id": "50d9c8ff-e25c-4237-a06e-5c2e43d5c6d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175674,7 +175674,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -175685,7 +175685,7 @@ } }, { - "id": "3adb873b-3c6f-40c6-9b5c-fd0b8fe48a24", + "id": "b70573f7-7ced-4a82-94d8-82f080d1eb2f", "name": "Get Tenant-wide Reassignment Configuration settings", "request": { "name": "Get Tenant-wide Reassignment Configuration settings", @@ -175715,7 +175715,7 @@ }, "response": [ { - "id": "b4607634-e722-431a-b473-98e37ca17f11", + "id": "cebbb3f5-d7af-407b-98f2-ab19e6bb2c92", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -175759,7 +175759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08896998-e83d-4a1b-a282-4113155aa7a8", + "id": "44d324f9-671a-471e-bb52-714dcbed746e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175798,12 +175798,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5bb4010-be99-43c2-9224-d53596fe27fd", + "id": "5797b5fe-0839-4219-8ca7-7505142e4811", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175847,7 +175847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5595ea30-2e61-436c-846c-bece81bb46b6", + "id": "2b4c25ab-d75f-4689-a5a5-68ef35367a82", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175886,12 +175886,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "022dc8e6-18d3-4538-b6a9-a54029330f42", + "id": "2d105f19-eba0-4cd5-b72f-5c1800d4dff2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175930,12 +175930,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77a646c2-baa9-4776-82e5-061b69a3f3e3", + "id": "b959217c-0566-4432-aa24-ce270dc94602", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175979,7 +175979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "577539d9-b4dd-43b7-8773-a7fc38a3bb3d", + "id": "22c6f5ce-a940-46cb-8e95-9c0b6a9fe41c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176018,7 +176018,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -176029,7 +176029,7 @@ } }, { - "id": "986ccaf0-e23a-4b3b-b185-fc4581b23783", + "id": "a044f37d-475f-43fa-ae91-66de359f2fc2", "name": "Update Tenant-wide Reassignment Configuration settings", "request": { "name": "Update Tenant-wide Reassignment Configuration settings", @@ -176072,7 +176072,7 @@ }, "response": [ { - "id": "735c5acd-0037-4b2d-b32b-56edbab6076c", + "id": "b29701cc-6aeb-4c2b-a4bf-5e06682018a4", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -176129,7 +176129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9db01f48-fc15-4db5-85c8-67580723a538", + "id": "8f64d556-d5d4-4ba1-af7e-d622cc81bca2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176181,12 +176181,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "277519dd-1a09-4392-af13-aa02d48fbff0", + "id": "4fbab47b-b7c3-403a-a3bf-8631b3130206", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176243,7 +176243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "915a3080-cc80-4b02-8183-5c2730b5dbab", + "id": "76ed49c8-1992-4080-b919-3bbe88deeb0a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176295,12 +176295,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b51f884-54ae-4556-b4b5-c664d49c40ef", + "id": "6b888692-be6b-4966-aa4a-b9bd04282f3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176357,7 +176357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3742e7a3-1674-4f24-a1f4-1aec8c37200d", + "id": "55d8136c-205c-422d-a803-8fe40396fead", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176409,7 +176409,2357 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + } + ] + }, + { + "name": "Task Management", + "description": "", + "item": [ + { + "id": "14e12a3a-4f0d-48c5-a1da-257c584a0c22", + "name": "Retrieve a task status list.", + "request": { + "name": "Retrieve a task status list.", + "description": { + "content": "Get a TaskStatus list.", + "type": "text/plain" + }, + "url": { + "path": [ + "task-status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\nFiltering is supported for the following fields and operators:\n **id**: *eq, in*\n **sourceId**: *eq, in*\n **completionStatus**: *eq, in*\n **type**: *eq, in* \"CLOUD_ACCOUNT_AGGREGATION\", \"CLOUD_GROUP_AGGREGATION\", \"CLOUD_PROCESS_UNCORRELATED_ACCOUNTS\" or \"CLOUD_REFRESH_ROLE\"", + "type": "text/plain" + }, + "key": "filters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\nSorting is supported for the following fields: **created**", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "cf74029e-a35a-4909-921b-2a27958269a6", + "name": "Responds with a TaskStatus for the task with the given task ID.", + "originalRequest": { + "url": { + "path": [ + "task-status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\nFiltering is supported for the following fields and operators:\n **id**: *eq, in*\n **sourceId**: *eq, in*\n **completionStatus**: *eq, in*\n **type**: *eq, in* \"CLOUD_ACCOUNT_AGGREGATION\", \"CLOUD_GROUP_AGGREGATION\", \"CLOUD_PROCESS_UNCORRELATED_ACCOUNTS\" or \"CLOUD_REFRESH_ROLE\"", + "type": "text/plain" + }, + "key": "filters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\nSorting is supported for the following fields: **created**", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + } + ], + "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 {\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"ullamco6d\": -87764123,\n \"ea71\": false,\n \"velit__af\": 45517694\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\": \"WARN\"\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\": \"QUEUED_TASK\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"adipisicing_17\": 98560555,\n \"laborisbf\": -29585276\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\": \"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": "5e54fd5b-f34b-4360-9ceb-0f14de38207d", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "task-status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\nFiltering is supported for the following fields and operators:\n **id**: *eq, in*\n **sourceId**: *eq, in*\n **completionStatus**: *eq, in*\n **type**: *eq, in* \"CLOUD_ACCOUNT_AGGREGATION\", \"CLOUD_GROUP_AGGREGATION\", \"CLOUD_PROCESS_UNCORRELATED_ACCOUNTS\" or \"CLOUD_REFRESH_ROLE\"", + "type": "text/plain" + }, + "key": "filters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\nSorting is supported for the following fields: **created**", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + } + ], + "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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "cb63c719-2d81-4bb8-971f-37689f57e98a", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "task-status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\nFiltering is supported for the following fields and operators:\n **id**: *eq, in*\n **sourceId**: *eq, in*\n **completionStatus**: *eq, in*\n **type**: *eq, in* \"CLOUD_ACCOUNT_AGGREGATION\", \"CLOUD_GROUP_AGGREGATION\", \"CLOUD_PROCESS_UNCORRELATED_ACCOUNTS\" or \"CLOUD_REFRESH_ROLE\"", + "type": "text/plain" + }, + "key": "filters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\nSorting is supported for the following fields: **created**", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + } + ], + "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": "27921626-1295-4133-9abf-0cf19347b576", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "task-status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\nFiltering is supported for the following fields and operators:\n **id**: *eq, in*\n **sourceId**: *eq, in*\n **completionStatus**: *eq, in*\n **type**: *eq, in* \"CLOUD_ACCOUNT_AGGREGATION\", \"CLOUD_GROUP_AGGREGATION\", \"CLOUD_PROCESS_UNCORRELATED_ACCOUNTS\" or \"CLOUD_REFRESH_ROLE\"", + "type": "text/plain" + }, + "key": "filters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\nSorting is supported for the following fields: **created**", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + } + ], + "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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "382ff1cc-1207-43fb-9c01-186e31d0623a", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "task-status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\nFiltering is supported for the following fields and operators:\n **id**: *eq, in*\n **sourceId**: *eq, in*\n **completionStatus**: *eq, in*\n **type**: *eq, in* \"CLOUD_ACCOUNT_AGGREGATION\", \"CLOUD_GROUP_AGGREGATION\", \"CLOUD_PROCESS_UNCORRELATED_ACCOUNTS\" or \"CLOUD_REFRESH_ROLE\"", + "type": "text/plain" + }, + "key": "filters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\nSorting is supported for the following fields: **created**", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + } + ], + "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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "155602ce-7ec7-4716-8920-82b88e7fec83", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "task-status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\nFiltering is supported for the following fields and operators:\n **id**: *eq, in*\n **sourceId**: *eq, in*\n **completionStatus**: *eq, in*\n **type**: *eq, in* \"CLOUD_ACCOUNT_AGGREGATION\", \"CLOUD_GROUP_AGGREGATION\", \"CLOUD_PROCESS_UNCORRELATED_ACCOUNTS\" or \"CLOUD_REFRESH_ROLE\"", + "type": "text/plain" + }, + "key": "filters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\nSorting is supported for the following fields: **created**", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + } + ], + "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": "a0e89ab2-71b8-43a5-a7d1-f2774b65c226", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "task-status" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\nFiltering is supported for the following fields and operators:\n **id**: *eq, in*\n **sourceId**: *eq, in*\n **completionStatus**: *eq, in*\n **type**: *eq, in* \"CLOUD_ACCOUNT_AGGREGATION\", \"CLOUD_GROUP_AGGREGATION\", \"CLOUD_PROCESS_UNCORRELATED_ACCOUNTS\" or \"CLOUD_REFRESH_ROLE\"", + "type": "text/plain" + }, + "key": "filters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\nSorting is supported for the following fields: **created**", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + } + ], + "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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "c064b87b-d8f3-4c0f-8bd8-5f62a9642fc5", + "name": "Get task status by ID.", + "request": { + "name": "Get task status by ID.", + "description": { + "content": "Get a TaskStatus for a task by task ID.", + "type": "text/plain" + }, + "url": { + "path": [ + "task-status", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "", + "key": "id", + "disabled": true + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "cc3b4166-d802-44a3-8880-3f10434b1402", + "name": "Responds with a TaskStatus for the task with the given task ID.", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "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 \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"commodo_a8\": -11040251,\n \"magna427\": 24739517.791743323\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\": \"WARN\"\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}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "df0f4328-ff1d-4750-9df4-7f083702998a", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f4fbe801-d53d-483b-ba4b-935f2e57e10f", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "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": "bc310ca4-212f-4369-91a1-ae094d368443", + "name": "Forbidden, generally due to a lack of security rights", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [], + "cookie": [], + "_postman_previewlanguage": "text" + }, + { + "id": "872c348c-0b66-421a-9851-29b5027f10a1", + "name": "TaskStatus with the given id was not found.", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "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": [], + "cookie": [], + "_postman_previewlanguage": "text" + }, + { + "id": "73c1bb28-9c76-43e9-9b81-69945bf8c310", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "task-status", + ":id" + ], + "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": "b72fab05-920f-4151-bb7d-794f86b45654", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "b3af5d72-a0a2-40f4-96ca-7a0c2ebe3f29", + "name": "Update task status by ID", + "request": { + "name": "Update task status by ID", + "description": { + "content": "Update a current TaskStatus for a task by task ID.", + "type": "text/plain" + }, + "url": { + "path": [ + "task-status", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "", + "key": "id", + "disabled": true + } + ] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "response": [ + { + "id": "500cef59-8734-4610-b321-98b7779e40fd", + "name": "Responds with the updated TaskStatus for the task with the given task ID.", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\n }\n ]\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"commodo_a8\": -11040251,\n \"magna427\": 24739517.791743323\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\": \"WARN\"\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}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c97342e5-744d-4f1a-ac98-18f271881a13", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "5faf577a-0a35-47ee-8307-3e8baebd8b05", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\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": "db62f010-75b6-4bef-afed-4a9abf096157", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "dade870e-acfd-4c68-9900-7fe4481b731b", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ff9ab96e-4896-461a-8e37-bbab2691fab4", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "task-status", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\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": "5357ad0e-4dec-4138-9f26-f6cc3ef52db9", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "task-status", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "{\n \"operations\": [\n {\n \"op\": \"replace\",\n \"path\": \"\",\n \"value\": \"\"\n },\n {\n \"op\": \"add\",\n \"path\": \"\",\n \"value\": \"\"\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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "063d467e-1e28-4476-9fc5-3adf3a4a5991", + "name": "Retrieve a pending task list.", + "request": { + "name": "Retrieve a pending task list.", + "description": { + "content": "Retrieve a list of TaskStatus for pending tasks.", + "type": "text/plain" + }, + "url": { + "path": [ + "task-status", + "pending-tasks" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "sort criteria", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "filter criteria", + "type": "text/plain" + }, + "key": "filters", + "value": "" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "9946cead-0b95-4b68-a7cb-85f4e129808f", + "name": "Responds with a list of TaskStatus for pending tasks.", + "originalRequest": { + "url": { + "path": [ + "task-status", + "pending-tasks" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "sort criteria", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "filter criteria", + "type": "text/plain" + }, + "key": "filters", + "value": "" + } + ], + "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 {\n \"id\": \"\",\n \"type\": \"QPOC\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"ullamco6d\": -87764123,\n \"ea71\": false,\n \"velit__af\": 45517694\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\": \"WARN\"\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\": \"QUEUED_TASK\",\n \"uniqueName\": \"\",\n \"description\": \"\",\n \"parentName\": \"\",\n \"attributes\": {\n \"adipisicing_17\": 98560555,\n \"laborisbf\": -29585276\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\": \"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": "e4f92926-1f4a-45e1-9dfc-1e68d0fadb17", + "name": "No content - indicates the request was successful but there is no content to be returned in the response.", + "originalRequest": { + "url": { + "path": [ + "task-status", + "pending-tasks" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "sort criteria", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "filter criteria", + "type": "text/plain" + }, + "key": "filters", + "value": "" + } + ], + "variable": [] + }, + "header": [ + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "No Content", + "code": 204, + "header": [], + "cookie": [], + "_postman_previewlanguage": "text" + }, + { + "id": "638c7bea-0e85-4b87-88e0-a1c1a7ff4d78", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "task-status", + "pending-tasks" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "sort criteria", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "filter criteria", + "type": "text/plain" + }, + "key": "filters", + "value": "" + } + ], + "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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "14967d0e-2920-44a2-9970-ca430824093f", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "task-status", + "pending-tasks" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "sort criteria", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "filter criteria", + "type": "text/plain" + }, + "key": "filters", + "value": "" + } + ], + "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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "48537628-f69c-4807-af9f-b3516cf9699a", + "name": "Retrieve headers only for pending task list.", + "request": { + "name": "Retrieve headers only for pending task list.", + "description": { + "content": "Retrieve headers for a list of TaskStatus for pending tasks.", + "type": "text/plain" + }, + "url": { + "path": [ + "task-status", + "pending-tasks" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "sort criteria", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "filter criteria", + "type": "text/plain" + }, + "key": "filters", + "value": "" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "HEAD", + "body": {} + }, + "response": [ + { + "id": "0d727b5d-c869-4f1a-a293-845883ab821c", + "name": "Responds with headers for List of TaskStatus for pending tasks.", + "originalRequest": { + "url": { + "path": [ + "task-status", + "pending-tasks" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "sort criteria", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "filter criteria", + "type": "text/plain" + }, + "key": "filters", + "value": "" + } + ], + "variable": [] + }, + "header": [ + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "HEAD", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [], + "cookie": [], + "_postman_previewlanguage": "text" + }, + { + "id": "8e744473-caa3-43d1-867a-5d2b6b7bbdce", + "name": "No content - indicates the request was successful but there is no content to be returned in the response.", + "originalRequest": { + "url": { + "path": [ + "task-status", + "pending-tasks" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "sort criteria", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "filter criteria", + "type": "text/plain" + }, + "key": "filters", + "value": "" + } + ], + "variable": [] + }, + "header": [ + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "HEAD", + "body": {} + }, + "status": "No Content", + "code": 204, + "header": [], + "cookie": [], + "_postman_previewlanguage": "text" + }, + { + "id": "b7723e27-d635-4601-b03f-3e046c11c9b2", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "task-status", + "pending-tasks" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "sort criteria", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "filter criteria", + "type": "text/plain" + }, + "key": "filters", + "value": "" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "HEAD", + "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\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ecea8e66-a7cd-4745-b8ba-a239ce419035", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "task-status", + "pending-tasks" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "false" + }, + { + "disabled": true, + "description": { + "content": "sort criteria", + "type": "text/plain" + }, + "key": "sorters", + "value": "" + }, + { + "disabled": true, + "description": { + "content": "filter criteria", + "type": "text/plain" + }, + "key": "filters", + "value": "" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "HEAD", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"\",\n \"trackingId\": \"\",\n \"messages\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n },\n {\n \"locale\": \"\",\n \"localeOrigin\": \"REQUEST\",\n \"text\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -176500,7 +178850,7 @@ } ], "info": { - "_postman_id": "d9c6238f-e7cc-4900-9d80-93ec0aca7aed", + "_postman_id": "7dc3fba8-f1a3-4a54-a606-1f7c02d377b0", "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 8c5ddea..9d93615 100644 --- a/postman/links/beta-link.txt +++ b/postman/links/beta-link.txt @@ -1 +1 @@ -https://god.gw.postman.com/run-collection/23226990-27f8a6df-d7ed-48ba-8fad-e82743ad64a4?action=collection%2Ffork&collection-url=entityId%3D23226990-27f8a6df-d7ed-48ba-8fad-e82743ad64a4%26entityType%3Dcollection%26workspaceId%3D80af54be-a333-4712-af5e-41aa9eccbdd0 \ No newline at end of file +https://god.gw.postman.com/run-collection/23226990-5b2f11ab-d2e9-4957-885e-711ed4f7218f?action=collection%2Ffork&collection-url=entityId%3D23226990-5b2f11ab-d2e9-4957-885e-711ed4f7218f%26entityType%3Dcollection%26workspaceId%3D80af54be-a333-4712-af5e-41aa9eccbdd0 \ No newline at end of file