Viewing Companies
To view all submitted companies (or forms), use the dashboard or the API.For the List Companies endpoint (shows a list of all company reviews, including their status and details), see the API Reference tab for
kybCompaniesList.Reviewing a Company
To mark a company review as complete, change its status toCOMPLETED using the API.
For the Change Status endpoint (marks a company review as completed), see the API Reference tab for
kybCompaniesChangeStatusCreate.You can also receive a webhook notification when a company is reviewed by enabling the
COMPANY_REVIEW notification in your Notification Settings.Re-Run KYB Automation
You can programmatically trigger a KYB automation re-run for a specific company without opening the dashboard.For the Re-run Automation endpoint (
POST /kyb/companies/{id}/automation/), see the API Reference tab for kybCompaniesAutomationCreate.Retrieve All Company Information
For the Retrieve complete information about company endpoint, see the API Reference tab for
kybCompaniesRetrieve.Selecting Which Data to Return
By default the endpoint returns the complete company record. That response is assembled from several sources, so on a company with a large ownership structure or many ordered reports it can take a long time to come back. Pass the optionalfields query parameter to return only the data types you actually need. It takes a list of values, either repeated or comma separated:
id, company, meta, token, documents, beneficiaries, questionnaires, comments, auditLogs, addressAudit, websiteAudit, companyNameAudit, dataMatchings, einVerification, govChecks, amlCheck, amlChecks, amlMonitoringUsers, and riskAssessment.
Beneficiary data can be narrowed further with dotted values such as beneficiaries.info, beneficiaries.documents, or beneficiaries.ownershipPercentage, so you can pull the ownership structure without also pulling every beneficiary’s AML results. See the API Reference tab for the full list of accepted values.
Requesting a parent returns everything beneath it — beneficiaries on its own covers every beneficiaries.* value, so there is no need to enumerate them.
Omit fields entirely and the response is unchanged, so existing integrations keep working as they are.
Risk Assessment Results
The response includes ariskAssessment object, so you can retrieve a company’s risk scoring programmatically instead of opening the dashboard:
The object is
null when no risk assessment has been run for the company. See Get Risk Assessment Results for how the score is calculated.
Deleting a Company
Companies can be removed from the dashboard or via the API.For the Delete Company endpoint (removes a company and its session from the system), see the API Reference tab for
kybCompaniesDestroy.Request Update
You can ask your client to update submitted data using the Request More Information (RI) functionality.Step 1: Request More Information
Initiate RI via dashboard. To track and handle these updates, set up the COMPANY INFO REQUEST webhook event.Step 2: Checking the Flow
The data requested during RI may differ from the original form. To determine what fields are needed, retrieve the flow information.For the Retrieve Flow endpoint (shows the fields currently required during RI), see the API Reference tab for
kybInfoRetrieve.Step 3: Update
Any updates can be made using the same endpoints used in the initial business verification flow, described in:To check if a questionnaire is required, use the list endpoint and fill in the first item, especially if multiple are listed. See
kybFormsQuestionnairesList in the API Reference.