Configuring the Review Center UI
You can configure the Review Center UI by using the Use Case Management APIs.
To create a new use case type configuration, use POST /api/v1/rpa/exception/usecasetypes.
The request payload of the API includes JSON objects that can be manipulated to modify the UI as per the business use case requirement. The specific objects in the JSON correspond to a component on the Review Center UI. For example:
- Category in the Object appear as tabs on the UI. Categories are used to group different review scenarios based on the business requirement.
- Subcategories appear within a category and display the data extracted from documents. Thee subcategories are displayed as standard fields for review or correction.
The Review Center also supports IDM document type mapping:
- The UI uses the configured document type and attribute, instead of hardcoded values, to query and display document previews
- When a document is sent to the Review Center, the idm_document_id in the payload must match the attribute value of the mapped document type
- The RPA flow that uploads documents to IDM must use the document type and attribute configured in the Review Center use case type, instead of the previously hardcoded RPAReviewCenter type
The request body is explained below:
| Property | Description |
|---|---|
| Name | The display name or label of an element, such as a document, section, or category within the Review Center interface. |
| ERP | The source ERP system associated with the review configuration, document, or data being presented in the Review Center. |
| Categories | The classification groups in which documents, tasks, or review items are organized.
|
| Subcategories | The nested or child categories under a main category.
|
| Filters |
The conditions that determine which documents, fields, or category items must be displayed, processed, or included in the Review Center
|
| Exception_type | The category or classification of an exception that the Review Center must detect, highlight, or require user attention during document review |
| Default_Category | The category that must be automatically pre-selected or assigned to a document or data field when uploaded in the Review Center UI |
| idm_document_id | The IDM document type associated with this use case. |
| idm_doc_attribute | The attribute of the IDM document type that stores the idm_document_id of the document |
| List labels | The set of labels displayed when a field, category, or filter uses a drop down list or options in the Review Center UI.
|
| Document_entities | The set of document fields, metadata, and extracted data elements that the Review Center UI must display, validate, or allow users to review during document processing in the RPA application
|
| Control_Dropdown | Specifies the predefined list of options that a field can present to the user as a drop down selection. |
| Default_dropdown | Specifies the pre-selected value that is displayed in a drop down field when the UI is loaded |
| Dropdown_controls |
The details of drop down-type fields in the UI.
|
| Lookup_enabled | Indicates whether a lookup or search functionality is enabled for a field, typically for drop downs or reference fields |
| Lookup_metadata | Additional configuration or details for lookup-enabled fields:
|
| Table_definitions | Specifies the structure, columns, and behavior of table-type document entities displayed in the UI |
| Name | Specifies the unique identifier or label within the request and UI |
| Column_definitions | Defines the structure, behavior, and attributes of columns within a table-type document-entity
|