Skip to main content
Iron gives you full visibility into your customer onboarding: clear status at every stage, written feedback from our compliance team when something needs fixing, and real-time insight into your customer’s payment abilities.

Steps to Onboard and Activate a Customer

1

Create a new customer

POST /api/customersCreate a customer record. The customer is created in IdentificationRequired status.
2

Verify the customer's identity

POST /api/customers/{id}/identifications/v2Create an identification using one of these methods:
  • Hosted Iron KYC link
  • SumSub token sharing
  • Outsourcing
This endpoint is not an upsert. Every call creates a new identification record, and the newest record drives the customer’s status. If you create a new identification while another is in flight, the customer resets to IdentificationRequired and the older identification stops counting, even if it is approved later.Create one identification, then wait for it to reach a terminal status (Approved, Declined, or Expired) before creating another. To track progress, subscribe to the identification_status webhook or poll GET /api/customers/{id}/identifications. Never re-call this endpoint to refresh status.
3

KYC is approved

Once approved, the customer status transitions to SigningsRequired.
4

Customer signs required documents

GET /api/customers/{id}/required-signingsRetrieve the required documents and present them to your customer. Mark each as signed via POST /api/customers/{id}/signings.
Example response from required-signings:
Pass the url to your customer for review. The signing request takes content_id (the id from required-signings) and signed: true.
5

Customer is activated

Once all required signings are complete, the customer status becomes Active.
6

Check payout rail availability

abilities.fiat_payout is nested by currency, then by rail. Check the specific rail you plan to use, for example abilities.fiat_payout.usd.ach === "Active", before initiating payouts.
Each rail also has a _thirdparty variant (e.g. ach_thirdparty) for payouts to a third party. The abilities object also returns fiat_deposit with the same shape and a currencies array listing the flows (mint, redeem, onramp, offramp, swap) available per currency.
Before an active customer can transact, register their wallet addresses for Travel Rule compliance. Self-hosted wallets register with a signed proof-of-ownership message, or, for US and Rest of World customers, by self-attestation. See the Crypto Addresses guide.
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 is incomplete, the customer’s status is IdentificationRequired 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
  • A Business submission is created without all required documents or beneficiary proofs of address (see Incomplete Submissions)

Mapping Onboarding Statuses in Your App

Use the customer’s status and identification_status together to drive a three-stage progress stepper. Both fields are returned on the customer object.
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 the specific banking rail you need is Active (e.g. abilities.fiat_payout.usd.ach). That’s when the customer is truly ready to transact.

Tracking EDD Status

Each identification includes a with_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 required
  • null: Identification was created before this feature was available
with_edd can be set in two ways:
  1. Partner-initiated. Pass with_edd: true (Link flow) or include edd_questionnaire (Token/Person flow) when creating the identification. See Proactively Increasing Customer Limits.
  2. Automatically by Iron. If AML checks determine EDD is required (e.g. customer resides in a high-risk jurisdiction), Iron sets with_edd to true server-side.
Use status and with_edd together to understand where a customer is in the verification process:

Edge Cases

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 via review_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 identification_status is Pending or Declined.
Do not display step_status results directly to the customer. The per-step breakdown (e.g. “identity: Declined, selfie: Approved”) creates confusion and support tickets. Instead, extract the comment fields and combine them into a single message.
Example identification response with feedback:
Extract and display all comments in a single message box:

API Endpoints

Status Reference

Customer Status

Returned on the customer object.

Identification Status

Returned on each identification object. Typical Flow: PendingProcessedPendingReviewApproved / 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 on each rail leaf under abilities.fiat_payout and abilities.fiat_deposit (e.g. abilities.fiat_payout.usd.ach).