EU onboarding
Overview
This page contains details about the European Union Know Your Customer (KYC) flows and links to the following sub-pages for quick reference:
Page name | Description |
---|---|
EU required parameters | This page lists the required API fields for onboarding an individual customer. |
EU required documents | This page contains tables listing the required documents for verification of an individual customer. |
EU request examples | This page contains API request examples for onboarding an individual customer in the UK regulatory region. |
Exception handling for redirection flow
As a response to the Unified Add Customer API, Nium returns a redirect URL. You need to redirect the customer to the redirect URL. After the customer completes the KYC verification, they are redirected back to your eKYC redirect URL that was configured with Nium.
The following parameters will be returned as part of the eKYC redirect URL to help you to understand the status of the customer’s verification in the vendor’s UI.
errorCode
errorMessage
isSuccess
– This field indicates whether the customer completed the required steps in the vendor’s UI. It doesn't mean KYC is successful.
This information helps you to design and implement the next steps in your application, i.e., you may decide to show the success or error message to the customer as per the scenarios listed below.
Scenario | Expected action from client | Query parameters in the redirection |
---|---|---|
The customer completed the required steps in the vendor’s UI. | You receive a callback from Nium. | errorCode : N/AerrorMessage : N/AisSuccess : true |
The redirect URL expires due to timeout. | Reinitiate the onboarding request. | errorCode : R408errorMessage : redirectURLExpiredisSuccess : FALSE |
The document has already been submitted in the vendor's UI. | KYC process is complete. You receive a callback from Nium. | errorCode : R403errorMessage : documentAlreadySubmittedisSuccess : FALSE |
The customer has provided incorrect data in the vendor's UI. | Ask your customer to submit correct data in the vendors page. | errorCode : I400errorMessage : vendorValidationErrorisSuccess : FALSE |
Verification failure at the vendor. | The application is sent for manual review. | errorCode : R401errorMessage : vendorVerificationFailureisSuccess : FALSE |
Internal server error at Nium. | Ask your customer to try after some time or reach out to Nium support. | errorCode : R500errorMessage : internalServerErrorisSuccess : FALSE |
Any unexpected error from the vendor. | Ask your customer to try after some time or reach out to Nium support. | errorCode : I500errorMessage : unexpectedErrorisSuccess : FALSE |
Validation already completed and customer retries the same link. | KYC process is complete. You receive a callback from Nium. | errorCode : R606errorMessage : verificationAlreadyCompletedisSuccess : TRUE |
Example of a redirect to the client in a successful case
https://www.nium.com/?customerHashId=773bcf1f-7e91-459b-a03a-75c87005145f&errorCode=&errorMessage=&isSuccess=true
Example of a redirect to the client in an unsuccessful case
https://www.nium.com/?customerHashId=590ec98a-ab6a-4da1-8dc7-35cc1c98d236&errorCode=R408&errorMessage=redirectURLExpired&isSuccess=false
eDocVerify – EU
When using the Unified Add Customer API to add a customer in the European Union, eDocument verification is performed.
In the EU, the add customer eDocVerify process is as follows:
- Your new customer signs up for verification.
- Send a
GET
request to the Terms and Conditions API. - Nium returns the Terms and Conditions description.
- Display the Terms and Conditions to your customer to agree and accept. You collect all customer information for onboarding.
- Send a
POST
request to the Unified Add Customer API as per the EU required parameters - Nium returns the
redirectURL
and other parameters which you inform your customer. - Direct your customer for verification and complete the identity verification by uploading the identity document and a live selfie in the form presented. Then wait for a callback from Nium.
Caution: The redirect URL expires in 60 minutes. - After the verification process completes, your customer is redirected back to the eKYC redirect URL that is configured during the client setup.
- Nium sends a CUSTOMER_COMPLIANCE_STATUS webhook with
complianceStatus
. - Send a response with the HTTPS status code
200
. - Customer onboarding can be reinitiated if the compliance status is
IN_PROGRESS
,REJECT
, orERROR
.
Updated 10 months ago