Skip to main content

KYB (Entities)

The Entities section manages company/entity profiles. It includes an entities list page and individual entity profile pages with documents, shareholders, and entity details.

Routes

  • Entities list: /entities
  • Entity profile: /entity/:id
  • Entity documents (route-controlled): /entity/:id/documents/:docID?
    • Archived documents view uses the query parameter: ?archived=true

Entities List (/entities)

Header Controls

ControlDescription
Registration Number searchFilters table by registration number. Submit with Enter or the search button. Clear input to remove filter.
Entity Name searchFilters table by entity name. Submit with Enter or the search button. Clear input to remove filter.
Show/HideOpens a column visibility dialog. Selected columns are persisted to LocalStorage (visibleColumnsEntities).
Add New EntityOpens the entity creation dialog (CreateEntity component).

Table Columns

The following columns are available. Default visible columns: Registration Number, Entity Name, Status, Incorporation Date, Country, Alerts, Risk, Company Name.

ColumnFieldNotes
Registration Numberregistration_numberDisplayed in monospace
Entity NamenameBold; links to entity profile
StatusstatusDisplayed as a status capsule (see values below)
Incorporation Dateincorporation_dateFormatted as DD MMM YYYY; displays if empty
Countrycountry_name
AlertsalertDisplayed as a status capsule (see values below)
RiskriskDisplayed as a status capsule (see values below)
Company Namecompany_name

Each row links to the entity profile at /entity/:id.

Pagination

Rows per page options: 20, 50, 100. Table uses virtual scroll. Pagination state (page, limit, ordering) is reflected in the URL query string.

Status Values

ValueDisplay
CREATEDCreated
INCOMPLETEIncomplete
PENDING_REVIEWPending (sub-status: REVIEW)
PENDING_APPROVALPending (sub-status: APPROVAL)
PENDING_UPLOADPending (sub-status: UPLOAD)
APPROVEDApproved
REJECTEDRejected
BLACKLISTEDBlacklisted
INACTIVEInactive

Risk Values

ValueLabel
0Normal
1High
2Very High
3NFC
4Unknown

Alert Values

ValueDisplay
0 or 4Clear
Any other non-null valueRisk
null— (dash)

Entity Profile (/entity/:id)

The entity profile page is divided into four sections rendered in order:

SectionWhat it shows
EntityKey summary information for the business — name, status, registration details
DocumentsAll documents uploaded for this entity (includes archived documents)
ShareholdersIndividuals or companies listed as shareholders of this entity — used for ownership transparency and compliance review
Entity DetailsFull detail fields for the entity record

Use the tab navigation on the left to jump directly to any section.


Entity Documents (/entity/:id/documents/:docID?)

When accessed via the route-controlled documents page:

  • A vertical document list is shown.
  • Selecting a document opens it in the viewer area (:docID parameter).
  • Appending ?archived=true to the URL switches to archived documents view.
  • Upload Document opens the upload dialog to add a new document.
note

The archived documents view is also available on the entity profile page (/entity/:id) where the EntityDocuments component is rendered with the archived flag enabled by default.