Integrations

Connect systems without importing their authority.

Partner systems supply business facts and provider signals. Clarivy derives tenant, actor, workflow and policy authority from a scoped service credential.

Choose the right integration path

PathUse it forPreserved provenance
Partner APIA loan-origination, merchant or case system opening a governed case.Credential, request ID, policy snapshot and integration actor
Lending middleware / LOS gatewayLending Middleware exchanging application stages, Nucleus results, exceptions and reviewed dispositions.Application reference, event ID, source stage, callback status and payload hash
Signed webhookA risk, fraud, screening or transaction-monitoring provider sending an event.Provider, event ID, signature, timestamp and payload hash
Document uploadEvidence already held by an authorized analyst or submitted through the portal.Filename, media type, size, file hash, case and uploader
Web citationAn observation from an approved official or public-business page.URL, exact excerpt, collector, observation time and hash

Open a case through the Partner API

Approved systems send business facts. Clarivy owns tenant identity, policy, case store, Qdrant filters and audit lineage. Connectors provide connectivity, not authorization.
  1. 1

    Create one credential per system and environment

    An administrator selects allowed workflows, scopes and expiry, then copies the secret once into a managed secret store.

  2. 2

    Send a stable idempotency key

    Generate one durable value for the logical business operation. Reuse it after a timeout; do not create a new value for the retry.

  3. 3

    Record the request identifier

    Store X-Clarivy-Request-Id with the source-system event for support and reconciliation.

  4. 4

    Treat the response as a governed case reference

    The case contains the policy snapshot and audit actor; it is not an automated lending, recovery or compliance decision.

Request example

cURL
curl --request POST \
  'https://app.clarivy.pro/api/integrations/v1/cases' \
  --header 'Authorization: Bearer <service-key>' \
  --header 'Idempotency-Key: <stable-unique-request-id>' \
  --header 'Content-Type: application/json' \
  --data '{
    "reference": "LOS-2026-000184",
    "title": "Merchant lending eligibility review",
    "purpose": "Assess the merchant against approved SME lending controls.",
    "use_case": "merchant_eligibility",
    "subject_name": "Example Merchant LLC",
    "subject_type": "legal_entity",
    "legal_basis": "contract_performance",
    "jurisdiction": "AE",
    "retention_days": 180
  }'
Response
{
  "request_id": "0f635ea8-3cb3-4be1-8b7f-ff6eb3fcb889",
  "idempotent_replay": false,
  "case": {
    "id": "4d135a11-f817-4272-9ef8-66ea48808193",
    "reference": "LOS-2026-000184",
    "owner": "Integration: Loan origination system",
    "policy_name": "Merchant eligibility evidence policy",
    "policy_version": 3,
    "policy_status_at_open": "published"
  }
}

Credential lifecycle

StageRequired control
CreateAdmin-only; least-privilege action and workflow scopes.
DeliverOne-time display into the customer secret manager.
StoreHash in Clarivy; encrypted secret in the calling platform.
UseTLS, bearer header, idempotency key and bounded request size.
ObserveLast-used time, request identifier, audit actor and anomaly alerts.
RotateDeploy a replacement, verify use, then revoke the old key.
RevokeImmediate server-side rejection without redeploying the caller.

Connector presets

ConnectorClarivy roleAvailability meaning
Generic signed webhookReceive customer risk, fraud, credit, recovery or monitoring events.Preset requires tenant mapping and certification.
Lending middleware / LOS gatewayReceive application, knockout, stage and manual-review events; return a reviewed disposition.Customer API mapping and end-to-end certification required.
SumsubReceive KYC, KYB, AML and monitoring outcomes.Public contract mapped; customer licence and credentials required.
ComplyAdvantageReceive screening, monitoring and KYB updates.Gateway hardening and provider controls required.
SEONReceive fraud, AML and identity events.Preset does not imply an active provider connection.
AlloyReceive Journey, evaluation and step-up workflow events.Tenant-specific event mapping is required.
Stripe RadarReceive review, fraud-warning and dispute events.Provider event remains a signal until reviewed.
UAE FIU open dataPreserve official publication versions and controlled citations.Monitoring does not create merchant-specific evidence automatically.

Connector boundary

A connector preset is not a licence, production certification or guarantee of source accuracy. No connector can bypass tenant isolation, case authority, evidence review or the customer’s final decision ownership.

Continue reading

Interactive API reference

Explore the live OpenAPI schema, operation details and generated examples.