SettleMint
Developer guidesCompliance

Compliance provider API reference

Reference for DALP compliance-provider endpoints, subject mapping endpoints, webhook headers, statuses, and monitoring fields.

Overview

DALP exposes tenant-scoped endpoints for Sumsub, ComplyAdvantage, Elliptic, Jumio, Middesk, Onfido, Persona, Trulioo, Veriff, and configured compliance-provider setup, subject mapping, webhook intake, and monitoring history.

Compliance providers connect external verification systems to DALP claim topics, subject mappings, status records, and webhooks.

Rendering diagram...

All endpoint paths below are relative to the versioned API base path. Webhook paths are relative to the platform origin.

Provider kinds

Provider kindSupported topic namesCurrent use
sumsubknowYourCustomerIdentity verdicts and applicant-on-hold monitoring alerts for configured identity topics
sumsub-amlantiMoneyLaunderingAML / watchlist monitoring alerts on existing Sumsub applicants
sumsub-kytknowYourTransactionKYT transaction and wallet monitoring for both entity and wallet subjects
complyadvantageantiMoneyLaunderingAML and sanctions search monitoring with categorical alert severity
ellipticantiMoneyLaunderingWallet monitoring alerts for wallet-monitoring topics
jumioknowYourCustomerIdentity-verification verdicts
middeskknowYourBusinessKYB verdicts
onfidoknowYourCustomer, knowYourBusinessWorkflow Studio and classic API identity-verification verdicts
personaknowYourCustomer, knowYourBusinessInquiry verdicts
truliooknowYourCustomerDataVerify KYC/KYB verdicts
veriffknowYourCustomerHosted KYC session verdicts

A provider can only be created or extended for the topic names listed for its provider kind. DALP rejects unsupported provider-topic pairs before provisioning.

Roles

Compliance-provider read and operational management endpoints require one of these system roles on the active organisation:

  • admin
  • systemManager
  • complianceManager

Provisioning or changing trusted-issuer topic state requires the claim-policy permission, exposed through the claimPolicyManager role. That applies to provider creation, provider revocation, adding a topic webhook, revoking a topic webhook, and reactivating a revoked topic webhook.

Provider statuses

StatusMeaning
pendingProvisioning or trusted-issuer registration is still in progress
activeThe provider can receive and process provider webhooks
pausedIntake is paused by an operator
failedProvisioning failed and can be retried
revokedThe provider has been revoked

Webhook lifecycle actions

Each provider topic has its own webhook row. A topic webhook status controls DALP intake for that one topic. It does not change the provider-level status, pause the external provider dashboard, or update the external provider's case-management state.

Operational actions change only the selected topic webhook row. Policy actions also change the provider identity's trusted-issuer topic set.

ActionRequired permissionState changeOn-chain effect
Add topic webhookclaimPolicyManagerNew topic row is createdThe provider identity is trusted for the added topic
Pause topic webhookadmin, systemManager, or complianceManageractive -> pausedNone. DALP stops intake for that topic
Resume topic webhookadmin, systemManager, or complianceManagerpaused -> activeNone. DALP resumes intake for that topic
Revoke topic webhookclaimPolicyManagerCurrent topic webhook state -> revokedThe topic is removed from the provider identity's trusted-issuer topic set
Reactivate webhookclaimPolicyManagerrevoked -> active; active stays activeA revoked topic is added back to the provider identity's trusted-issuer topic set
Rotate webhook secretadmin, systemManager, or complianceManagerStatus is unchangedNone. DALP stages a new verification secret for that topic webhook

Pause and resume are operational controls for intake. They keep the provider's OnchainID identity, signing EOA, and trusted-issuer registration unchanged. Revoke and reactivate are policy controls because they change the topics that the provider identity can attest. Reactivation preserves the existing webhook row, webhook id, and URL token. If you call Reactivate on an already active topic webhook, DALP returns the current row without changing its state. Secret rotation keeps the topic status unchanged and creates a pending secret with the requested grace window; it also requires wallet confirmation before DALP accepts the new signing material.

Provider endpoints

MethodPathPurpose
GET/compliance/providersList tenant compliance providers
POST/compliance/providersCreate and provision a provider
GET/compliance/providers/{providerId}Read one provider
POST/compliance/providers/validate-credentialsValidate write-only provider credentials
POST/compliance/providers/{providerId}/pausePause intake
POST/compliance/providers/{providerId}/resumeResume a paused provider
POST/compliance/providers/{providerId}/retry-provisioningRetry idempotent provisioning
POST/compliance/providers/{providerId}/revokeRevoke the provider
POST/compliance/providers/{providerId}/rotate-secretStage a new webhook signing secret
POST/compliance/providers/{providerId}/promote-secretPromote the pending signing secret
POST/compliance/providers/{providerId}/cancel-secret-rotationDiscard a pending signing secret
GET/compliance/providers/{providerId}/healthRead provider health
GET/compliance/providers/{providerId}/monitoringList monitoring alerts
POST/compliance/providers/{providerId}/webhooksAdd another supported topic webhook
POST/compliance/providers/{providerId}/webhooks/{webhookId}/pausePause one topic webhook
POST/compliance/providers/{providerId}/webhooks/{webhookId}/resumeResume one topic webhook
POST/compliance/providers/{providerId}/webhooks/{webhookId}/revokeRevoke one topic webhook
POST/compliance/providers/{providerId}/webhooks/{webhookId}/reactivateReactivate one revoked topic webhook
POST/compliance/providers/{providerId}/webhooks/{webhookId}/rotate-secretStage a topic webhook signing secret
POST/compliance/subjects/transactions/registerRegister a Sumsub KYT transaction

Create provider request

POST /compliance/providers accepts:

FieldTypeNotes
providerKindProvider kindSelects the provider adapter
credentialsobjectProvider-specific write-only API credentials
webhookSigningSecretstringSecret used to verify inbound provider webhooks
webhookAuthModehmac or basic_auth_ip_allowlistDefaults to hmac; Jumio must be basic_auth_ip_allowlist
webhookIpAllowliststring array, optionalRequired and non-empty when the resolved mode is basic_auth_ip_allowlist
firstTopicobjectFirst topic configuration: topicName, topicId, optional revocationSeverityThreshold and notificationChannels

Use POST /compliance/providers/{providerId}/webhooks when an existing multi-topic provider needs another supported topic. The body uses the same topic fields as firstTopic, plus a webhookSigningSecret; the added topic reuses the provider identity and updates the trusted-issuer topic set for that provider.

Webhook authentication is resolved against the selected provider. Sumsub, Elliptic, ComplyAdvantage, Sumsub AML, Sumsub KYT, Middesk, Onfido, Persona, Trulioo, and Veriff use hmac. Creation rejects a non-empty webhookIpAllowlist for those providers because their webhook verifiers do not consult an allowlist. Jumio supports only basic_auth_ip_allowlist; sending the default hmac shape is rejected. Jumio creation requires a non-empty webhookIpAllowlist.

Sumsub credentials use:

{
  "providerKind": "sumsub",
  "credentials": {
    "appToken": "...",
    "secretKey": "..."
  }
}

Sumsub AML credentials use:

{
  "providerKind": "sumsub-aml",
  "credentials": {
    "apiToken": "...",
    "secretKey": "...",
    "webhookSigningSecret": "...",
    "levelName": "aml-monitoring-level"
  }
}

Sumsub KYT credentials use:

{
  "providerKind": "sumsub-kyt",
  "credentials": {
    "apiToken": "...",
    "secretKey": "...",
    "webhookSigningSecret": "...",
    "levelName": "kyt-monitoring-level"
  }
}

Sumsub KYT supports both entity and wallet subject mapping: the applicant id anchors the entity subject, while txn.info.address is treated as the tenant wallet and txn.counterparty.address as the other side of the monitored transaction.

Elliptic credentials use:

{
  "providerKind": "elliptic",
  "credentials": {
    "apiKey": "...",
    "apiSecret": "..."
  }
}

ComplyAdvantage credentials use:

{
  "providerKind": "complyadvantage",
  "credentials": {
    "apiToken": "...",
    "webhookSigningSecret": "..."
  }
}

Jumio credentials use:

{
  "providerKind": "jumio",
  "credentials": {
    "apiToken": "...",
    "apiSecret": "...",
    "region": "eu-1",
    "basicAuthCredentials": "..."
  },
  "webhookSigningSecret": "jumio-callback-basic-auth-secret",
  "webhookAuthMode": "basic_auth_ip_allowlist",
  "webhookIpAllowlist": ["203.0.113.10"]
}

Jumio regions are amer-1, eu-1, and sg-1. Jumio uses callback Basic Auth plus an IP allowlist instead of HMAC-only webhook authentication. The Basic Auth credential configured in the Jumio callback must match the provider webhookSigningSecret; credentials.basicAuthCredentials is provider credential material, not the callback verifier secret.

Middesk credentials use:

{
  "providerKind": "middesk",
  "credentials": {
    "apiKey": "...",
    "webhookSigningSecret": "..."
  }
}

Onfido credentials use:

{
  "providerKind": "onfido",
  "credentials": {
    "apiToken": "...",
    "webhookSigningSecret": "...",
    "region": "eu"
  }
}

Onfido regions are us, eu, and ca.

Persona credentials use:

{
  "providerKind": "persona",
  "credentials": {
    "apiToken": "...",
    "webhookSigningSecret": "...",
    "inquiryTemplateId": "itmpl_..."
  }
}

Trulioo credentials use:

{
  "providerKind": "trulioo",
  "credentials": {
    "apiKey": "...",
    "apiSecret": "...",
    "webhookSigningSecret": "..."
  }
}

Veriff credentials use:

{
  "providerKind": "veriff",
  "credentials": {
    "apiKey": "...",
    "apiSecret": "...",
    "webhookSigningSecret": "..."
  }
}

Provider response fields

Provider read responses return a single provider object with nested topics. Provider list responses return the same provider fields, the nested topics array, and topicsCount, activeTopicsCount, and revokedTopicsCount so dashboards can show active and audit counts separately.

FieldMeaning
idProvider identifier
providerKindProvider kind
statusCurrent provider status
statusExplanationHuman-readable status details
issuerEoaAddressProvider issuer EOA registered as trusted issuer
onchainIdentityAddressOnchainID address for the provider issuer
providerApiKeyRefStored secret reference, not the provider API key itself
webhookUrlTokenProvider-level URL token
webhookAuthModehmac or basic_auth_ip_allowlist
webhookIpAllowlistConfigured source IP/CIDR allowlist, or null
pendingSecretExpiresAtExpiry for the pending provider signing secret
lastActivityLatest verdict or alert activity across the provider
lastHealthCheckLast stored credential/secret health result
createdAt / updatedAtProvider timestamps

Each topics row includes providerId, topicName, topicId, its own webhookUrlToken, status, revocationSeverityThreshold, notificationChannels, lastActivity, createdAt, and updatedAt. Read responses include non-revoked topics by default, including pending, active, paused, and failed topic rows. Pass includeRevoked=true when building an audit view that must include revoked topic rows.

Subject endpoints

Use the subject endpoint that matches how the provider starts verification:

  • create-applicant creates or starts a provider-hosted applicant, inquiry, session, or business verification for Sumsub, Sumsub AML, Jumio, Middesk, Onfido, Persona, Trulioo, and Veriff.
  • register-wallet registers an existing DALP identity or wallet with a continuous-monitoring provider for ComplyAdvantage, Elliptic, and Sumsub KYT.
  • Sumsub KYT transaction monitoring uses register-wallet to bind the monitored wallet or applicant to a DALP identity, then POST /compliance/subjects/transactions/register to register each monitored transaction.
MethodPathProviderPurpose
POST/compliance/subjects/create-applicantSumsubCreate and map a Sumsub applicant
POST/compliance/subjects/create-applicantSumsub AMLCreate and map a Sumsub AML applicant
POST/compliance/subjects/create-applicantJumioCreate and map a Jumio applicant
POST/compliance/subjects/create-applicantMiddeskCreate and map a Middesk business
POST/compliance/subjects/create-applicantOnfidoCreate and map an Onfido applicant
POST/compliance/subjects/create-applicantPersonaCreate and map a Persona inquiry
POST/compliance/subjects/create-applicantTruliooRun DataVerify and map a Trulioo subject
POST/compliance/subjects/create-applicantVeriffCreate and map a hosted Veriff session
POST/compliance/subjects/register-walletComplyAdvantageRegister and map a monitored entity search
POST/compliance/subjects/register-walletEllipticRegister and map an Elliptic wallet subject
POST/compliance/subjects/register-walletSumsub KYTRegister and map a monitored KYT wallet

create-applicant accepts:

FieldTypeNotes
providerIdUUIDMust identify an active Surface-A provider
topicNameclaim topic nameTopic configured on the provider
identityAddressEthereum addressDALP identity address in the active system
applicantHints.externalUserIdstring, optionalExternal subject identifier; defaults to the identity address
applicantHints.levelstring, optionalProvider workflow, level, or configuration selector
applicantHints.name / businessNamestring, Middesk onlyBusiness name
applicantHints.tinstring, Middesk onlyBusiness tax identifier
applicantHints.addressesarray, Middesk onlyBusiness addresses
applicantHints.firstName / first_namestring, Onfido onlyApplicant first name
applicantHints.lastName / last_namestring, Onfido onlyApplicant last name
applicantHints.inquiryTemplateId / inquiry_template_idstring, Persona onlyPersona inquiry template override
applicantHints.fieldsobject, Persona onlyPersona inquiry fields
applicantHints.countryCodestring, Trulioo onlyDataVerify country code
applicantHints.demographicsobject, Trulioo onlyDataVerify DataFields.PersonInfo input
applicantHints.personobject, Veriff onlyHosted session person prefill
applicantHints.callbackUrlstring, Veriff onlyVeriff callback URL

create-applicant returns externalId and may return redirectUrl. When applicantHints.level is omitted, DALP forwards its default level value to providers that need a selector. Use that omission only when the provider tenant has a real workflow or configuration with that exact value. The default is not a portable Jumio or Onfido workflow identifier.

For Jumio, pass applicantHints.level as the tenant's workflow definition key, such as the numeric key or label configured in Jumio. DALP uses applicantHints.externalUserId, or the identity address when omitted, as the external subject id and may return a hosted web URL as redirectUrl.

For Middesk, pass applicantHints.name or businessName, applicantHints.tin, and at least one address in applicantHints.addresses. DALP stores Middesk external_id, falling back to the external subject id supplied in the request.

For Onfido, pass applicantHints.level as the active workflow id. Also pass applicantHints.firstName and applicantHints.lastName. DALP forwards optional email, phone number, redirect URLs, and locale. If Onfido returns a different applicant id, DALP maps that id to the external subject id.

For Persona, pass applicantHints.inquiryTemplateId or configure inquiryTemplateId on the provider. DALP creates an inquiry and stores the returned Persona inquiry id as the external subject id. The response may include the hosted inquiry URL as redirectUrl.

For Trulioo, pass applicantHints.countryCode and applicantHints.demographics. DALP forwards the demographics object to DataVerify as DataFields.PersonInfo. DALP stores CustomerReferenceID as the external subject id. Trulioo does not return a hosted redirect URL.

For Veriff, pass applicantHints.person when pre-filling hosted session person data and applicantHints.callbackUrl when the session should carry an explicit Veriff callback URL. DALP stores vendorData as the external subject id and returns the hosted session URL as redirectUrl.

register-wallet accepts an Elliptic wallet mapping, a Sumsub KYT wallet mapping, or a ComplyAdvantage entity-search mapping:

FieldTypeNotes
providerIdUUIDMust identify an active Surface-B provider
topicNameclaim topic nameTopic configured on the provider
walletAddressEthereum addressElliptic and Sumsub KYT; wallet already registered to a DALP identity
identityAddressEthereum addressComplyAdvantage only; DALP identity to bind to the search
subjectHints.searchTermstringComplyAdvantage search term
subjectHints.clientRefstring, optionalComplyAdvantage client reference; defaults to identityAddress
subjectHints.entityTypestring, optionalComplyAdvantage entity type; defaults to person
subjectHints.typesstring array, optionalComplyAdvantage screening list types; defaults to sanction, warning

register-wallet returns externalId and the resolved identityAddress. For Sumsub KYT, the returned externalId is the provider applicant id that transaction registration can later use when a transaction has no wallet address.

Webhook paths

Provider dashboards send webhook events to:

/api/webhooks/compliance/<provider>/<webhookId>/<urlToken>

Build each webhook URL from the specific topic row that should receive the provider delivery. Use topics[].providerId as <webhookId> and topics[].webhookUrlToken as <urlToken>. For the first topic those values match the provider-level webhook row; added topics have their own row identifier and token.

Current provider path segments are:

  • sumsub
  • sumsub-aml
  • sumsub-kyt
  • complyadvantage
  • elliptic
  • jumio
  • middesk
  • onfido
  • persona
  • trulioo
  • veriff

The request body limit is 64 KiB.

Webhook signatures

ProviderHeadersAccepted digest
Sumsubx-payload-digest, x-payload-digest-algHMAC_SHA1_HEX, HMAC_SHA256_HEX, or HMAC_SHA512_HEX over raw body
ComplyAdvantagex-complyadvantage-signatureHMAC-SHA256 hex over raw body
Ellipticx-elliptic-signatureHMAC-SHA256 hex over raw body, with optional sha256= prefix
JumioAuthorizationBasic Auth credentials plus configured source IP allowlist
Middeskx-middesk-signature-256HMAC-SHA256 hex over raw body
Onfidox-sha2-signatureHMAC-SHA256 hex over raw body
Personapersona-signatureHMAC-SHA256 hex over ${timestamp}.${rawBody}
Trulioox-trulioo-signatureHMAC-SHA256 hex over raw body
Veriffx-hmac-signatureHMAC-SHA256 hex over raw body

If Sumsub omits x-payload-digest-alg, DALP uses HMAC_SHA256_HEX. Persona accepts space-separated signature sets during key rotation.

Trulioo DataVerify webhooks prefer the top-level TransactionId as the provider event id. Legacy deliveries without that stable id use a lower-trust composite fallback: SHA-256 over (TransactionId, RecordStatus, body_hash), where body_hash is the SHA-256 hex digest of the raw body.

ComplyAdvantage webhooks prefer the top-level id as the provider event id. Legacy deliveries without that stable id use a composite fallback: SHA-256 over (search_id, created_at).

Webhook processing outcomes

ConditionBehaviour
Signature invalidRequest is rejected
Body exceeds 64 KiBRequest is rejected as too large
New event is outside the five-minute replay windowRequest is rejected
Duplicate completed eventEvent is treated as replayed
Retryable claim processing failureRequest returns retry behaviour so the provider can resend
Subject is unmappedEvent is recorded for audit, but no on-chain claim effect occurs

Monitoring fields

The monitoring endpoint returns paginated rows with:

FieldMeaning
idMonitoring row ID
providerEventIdProvider event identifier
subjectAddressDALP subject address when resolved
topicNameClaim topic when available
severityNormalised severity from 0 through 100, when available
outcomeProcessing outcome
rawPayloadOriginal provider payload retained for audit
processedAtProcessing timestamp when completed
createdAtRow creation timestamp

See also

On this page