Every organization on nxos must complete identity verification (KYB for businesses, KYC for individuals) before it can hold balances, send payouts, or back an active Letter of Authorization. This guide covers the two endpoints that drive that flow:Documentation Index
Fetch the complete documentation index at: https://docs.nxos.io/llms.txt
Use this file to discover all available pages before exploring further.
GET /v1/organizations/verification: read the current status.POST /v1/organizations/verification: start (or refresh) a verification session.
Nxos-On-Behalf-Of header, so a broker can run verification on behalf of a customer org. The flow is identical whether you’re verifying your own org or a customer org. The only difference is which org id the request targets.
In broker flows, the customer’s Letter of Authorization is signed in the same session as their verification submission. The LOA becomes effective once both the signature is captured and the verification reaches APPROVED. See Cross-org access for what the LOA enables.
Prerequisites
- An API key for the organization you’re verifying, or a broker API key plus a
PENDINGLetter of Authorization (see Cross-org access). - For brokers, the customer org must already exist (created via
POST /v1/organizations).
Flow overview
- Call
POST /v1/organizations/verificationto start a session. The response carries aurl(Sumsub-hosted page) and anaccessToken(for the Sumsub WebSDK). - Hand off the customer to one of the two delivery options below.
- Poll
GET /v1/organizations/verificationuntilstatusisAPPROVED,REJECTED, orRESUBMISSION_REQUIRED.
externalUserId = organizationId. Calling POST multiple times returns a new short-lived token for the same applicant. It does not start over.
Step 1: Start a session
Step 2: Hand off to the customer
You have two delivery options. Pick one based on how much UI control you need.Option A: Hosted URL
Share theurl with the customer (email link, dashboard redirect, SMS, in-app prompt). The customer completes the entire flow on a Sumsub-hosted page. No SDK integration on your side.
This is the simplest path and works well for brokers who don’t want to host the verification UI.
GET /v1/organizations/verification to learn the outcome.
Option B: Embedded WebSDK
If you’d rather render the flow inside your own UI, pass theaccessToken to the Sumsub WebSDK. The token authorizes the SDK to communicate with Sumsub on the applicant’s behalf.
POST /v1/organizations/verification again for the same org and return the new accessToken. The SDK swaps it in without restarting the flow.
See Sumsub’s WebSDK docs for full integration details. The token format and refresh callback shape are theirs.
Step 3: Poll for the result
Status lifecycle
| Status | Meaning | What you do |
|---|---|---|
NOT_STARTED | The org has a verification record but no session has been opened. | Call POST to start one. |
PENDING | Session started; awaiting customer action or Sumsub review. | Poll. |
APPROVED | Verified. The org can transact, hold balances, and back active LOAs. | Done. |
REJECTED | Sumsub or compliance ops declined the application. | Terminal in this flow. Customer cannot re-submit through the same path; contact support if you believe this is in error. |
ON_HOLD | Pending manual compliance review on our side. | Poll. Resolution can take a business day. |
RESUBMISSION_REQUIRED | Sumsub flagged a fixable problem (blurry document, wrong document type, etc.). | Call POST again to get a fresh token, hand the customer back into the flow. The session resumes at the failing step. |
What a broker can act on, and when
A Letter of Authorization can be signed at any time, including before the customer’s verification completes. But the LOA is only effective forNxos-On-Behalf-Of calls while the granter’s verification status is APPROVED. See Cross-org access for the full gating rule.
In practice this means brokers can run two flows in parallel:
- Send the customer an LOA to sign (dashboard / e-signing).
- Call
POST /v1/organizations/verificationto start their KYB.
Nxos-On-Behalf-Of begin working. If verification later lapses (e.g. expiresAt passes, or the customer needs to re-verify), the LOA is suspended automatically until the verification returns to APPROVED. No action on the LOA itself.
Summary
| Step | Endpoint | What happens |
|---|---|---|
| Start | POST /v1/organizations/verification | Creates a Sumsub applicant for the org, returns a session URL and access token |
| Check | GET /v1/organizations/verification | Returns current status, type, and last-updated timestamp |
| Resubmit | POST /v1/organizations/verification | Mints a fresh token for the same applicant; flow resumes at the failing step |
Related
- Authentication: API keys
- Cross-org access: how LOAs and KYB interact