Skip to main content

End-to-End Onboarding

This guide walks you through a complete company onboarding lifecycle using the Zenoo CLM API. By the end you will have created an entity, opened an onboarding case, executed compliance checks, reviewed generated alerts, and closed the case.

Prerequisites

  • A valid API key (see Authentication)
  • Base URL: https://api.zenoo.com/v1

What happens during onboarding

When you create an onboarding case, Zenoo automatically:
  1. Creates verification requirements based on entity type and role
  2. Executes API-based checks (screening, registry, identity)
  3. Generates alerts for any hits (PEP, sanctions, adverse media)
  4. Calculates a 4-dimension risk score
1

Create a company entity

Register the company you want to onboard. The response includes the entity token used in all subsequent calls.
Response:
2

Create an onboarding case

Open an onboarding case linked to the entity. Zenoo automatically creates verification requirements and begins executing API-based checks.
Response:
The due_date is automatically calculated from SLA configuration based on case type and priority. An Onboarding/Medium case defaults to 14 calendar days.
3

List checks created for the case

Zenoo auto-creates checks based on entity type and role. List them to track progress.
Response:
4

Wait for checks to complete

Checks execute asynchronously. Use webhooks (recommended) or poll the case status.Option A: WebhookConfigure a webhook endpoint to receive check.completed and check.failed events. See Webhook Events.Option B: Poll
5

Review alerts generated

After checks complete, any screening hits generate alerts that require analyst review.
Response:
6

Resolve each alert

Review the alert details and resolve it with an action and justification.
Response:
A case cannot be closed while it has open alerts. Resolve or escalate every alert before closing.
7

Close the case

Once all alerts are resolved, close the case with a summary.
Response:

Next steps