Steps to Onboard and Activate a Customer
Create a new customer
POST /customersCreate a customer record. The customer is created in IdentificationRequired status.API Example
API Example
Verify the customer's identity
POST /customers/{id}/identifications/v2Create an identification using one of these methods:- Hosted Iron KYC link
- SumSub token sharing
- Outsourcing
API Example
API Example
Customer signs required documents
GET /customers/{id}/required-signingsRetrieve the required documents and present them to your customer. Mark each as signed via POST /customers/{id}/signings.API Example
API Example
url to your customer for review. When signing, always set content_type to "Url" in the signing request.A customer’s status may revert from
Active to SigningsRequired or IdentificationRequired if new compliance actions are required (e.g. updated terms and conditions, fraud review, enhanced due diligence).Handling Missing Information
If an identification becomes incomplete, the customer’s status moves back toIdentificationRequired and a url is returned on the Identification object. Redirect your customer to this URL — it opens a hosted step-up flow that collects only the missing data.
This occurs when:
- A data point is found to be invalid, expired, or inconsistent
- A limit triggers additional due diligence requirements
Mapping Onboarding Statuses in Your App
UsecustomerStatus and identificationStatus together to drive a three-stage progress stepper.
customerStatus | identificationStatus | Stage | What to show |
|---|---|---|---|
IdentificationRequired | None | Submission | Prompt customer to start KYC |
IdentificationRequired | Pending | Submission | Prompt customer to complete KYC |
IdentificationRequired | Expired | Submission | Previous attempt expired — prompt to restart |
IdentificationRequired | Declined | Submission | Show review_comment, prompt to retry |
IdentificationRequired | Processed | Compliance Review | Show waiting state — no customer action needed |
IdentificationRequired | PendingReview | Compliance Review | Show waiting state — under active review |
SigningsRequired | Approved | Activation | KYC approved — present required documents to sign |
Active | Approved | Complete | Fully onboarded — customer can transact |
Typical compliance review turnaround is 24–48 hours. Customers can re-enter
SigningsRequired at any time (e.g. updated terms). Use the abilities endpoint to confirm banking rails are active — that’s when the customer is truly ready to transact.Tracking EDD Status
Each identification includes awith_edd field that indicates whether Enhanced Due Diligence was applied. This field is an optional boolean:
true— EDD was triggered (either by the partner or automatically by Iron’s AML checks)false— EDD was explicitly not requirednull— Identification was created before this feature was available
with_edd can be set in two ways:
- Partner-initiated — Pass
with_edd: true(Link flow) or includeedd_questionnaire(Token/Person flow) when creating the identification. See Proactively Increasing Customer Limits. - Automatically by Iron — If AML checks determine EDD is required (e.g. customer resides in a high-risk jurisdiction), Iron sets
with_eddtotrueserver-side.
status and with_edd together to understand where a customer is in the verification process:
status | with_edd | Meaning |
|---|---|---|
Pending | null / false | Standard KYC in progress |
Pending | true | EDD flow in progress |
PendingReview | null / false | Standard KYC under manual review |
PendingReview | true | EDD complete at verification provider, awaiting compliance review |
Approved | null / false | Standard KYC approved, no EDD |
Approved | true | Approved through EDD |
Declined | null / false | Standard KYC rejected |
Declined | true | Rejected after EDD review |
Edge Cases
customerStatus | Meaning |
|---|---|
Suspended | Blocked — can happen at any stage. Contact support. |
UserRequired | Partner-area user must be created first. Only applies if requires_user is enabled. |
Displaying Onboarding Comments to Your Customer
If a customer’s KYC submission is incomplete or needs correction, our onboarding team may provide written feedback explaining what needs to be improved. This feedback is available on the identification object viareview_comment and step_status.*.comment fields. Display these comments to your customer so they know exactly what to fix before resubmitting.
Show these comments when identificationStatus is Pending or Declined.
Implementation example
Implementation example
Example identification response with feedback:Extract and display all comments in a single message box:
API Endpoints
| Endpoint | Purpose |
|---|---|
GET /customers/{id} | Customer object with status and abilities |
GET /customers/{id}/identifications | Identifications with status, step_status, and review_comment |
GET /customers/{id}/abilities | Customer capabilities including fiat_deposit and fiat_payout status |
Status Reference
Customer Status
Returned on the customer object.| Status | Description |
|---|---|
IdentificationRequired | Must complete KYC/KYB |
SigningsRequired | Must sign required documents |
Active | Fully onboarded — can transact |
Suspended | Blocked for compliance or fraud reasons |
UserRequired | Partner-area user must be created first |
Identification Status
Returned on each identification object.| Status | Description |
|---|---|
Pending | Customer has not started |
Processed | Documents submitted, awaiting review |
PendingReview | Under compliance review |
Approved | Approved |
Declined | Rejected |
Expired | Expired due to inactivity |
Pending → Processed → PendingReview → Approved / Declined
The identification object also includes with_edd (boolean, nullable) to indicate whether EDD was applied. See Tracking EDD Status for the full interpretation table.
Ability Status
Returned underabilities.fiat_payout and abilities.fiat_deposit.
| Status | Description |
|---|---|
Active | Available for use |
Pending | Activation in progress |
Unavailable | Not offered for this customer |
Blocked | Blocked for this customer |
Maintenance | Temporarily unavailable |

