This guide provides step-by-step instructions for onboarding new retail customers (B2C) for Digital Banking and Cards products using the Solaris API. You will learn which information is mandatory and which endpoints and webhooks to integrate.
For a comprehensive overview of onboarding requirements, check the Onboarding requirements guide.
Before starting the onboarding process, implement the following prerequisites:
1. Technical setup:
Set up your environment and get your authentication keys. For step-by-step instructions, check the Technical setup guide.
2. Legal and compliance screens:
Build the necessary legal and compliance screens in your sign-up flow to collect your customers' consent to the necessary legal and compliance requirements. The Legal and compliance screens guide contains step-by-step instructions on how to create these screens and what they must contain.
The following screens are required to onboard B2C and freelancer customers for Digital Banking & Cards:
- Terms and Conditions
- Customer information
- Economic interest
- Person tax information (Only for customers in Germany)
- FATCA indication
- Self-declaration as a politically exposed person (PEP). (Only for customers in France, Italy, and Spain)
- Compliance screen
Record the customer's consent on each screen as a UTC timestamp (e.g., 2019-01-01T00:00:00Z). Afterward, you must pass each timestamp in its respective field to Solaris.
- Collect the customer's consent to Solaris's Terms and Conditions and store the timestamp in the
terms_conditions_signed_atfield. - Collect the customer's consent to data processing and store the timestamp in the
data_terms_signed_atfield. - Collect the customer's economic interest declaration and store the timestamp in the
own_economic_interest_signed_atfield. - Collect the customer's FATCA indication and store it in the
fatca_relevantfield. Store the timestamp in thefatca_crs_confirmed_atfield.
The mentioned fields are part of the person resource in which all the customer data points are stored.
The following diagram outlines the integration process for onboarding retail customers. Click on each step to jump to the relevant section.
| Category | Step | Description |
|---|---|---|
| Registration | Step 1 | Collect mandatory data and create a person resource. |
| Registration | Step 2 | Create and verify the customer's mobile number. |
| Tax Info | Step 3 | Collect tax information and create a tax identification resource. |
| Identification | Step 4 | Trigger the identification process (KYC) and ensure the customer passes background checks (CDD, FATCA). |
| Account | Step 5 | Create an account opening request. |
| Cards | Step 6 | Create and activate a debit card. |
To view a larger version, right-click the image and select "Open in a new tab".
Subscribe to the following webhook events to automate your integration. For implementation details, check the webhooks documentation.
IDENTIFICATIONPERSON_CHANGEDPERSON_DELETEDPERSON_MOBILE_NUMBER_CREATEDPERSON_MOBILE_NUMBER_DELETEDPERSON_TAX_IDENTIFICATION_CHANGED
BOOKINGACCOUNT_BLOCKACCOUNT_CLOSUREACCOUNT_CLOSURE_REQUESTPOTENTIAL_ACCOUNT_BLOCKINGPOSTBOX_ITEM_CREATED
CARD_LIFECYCLE_EVENTCARD_AUTHORIZATIONCARD_AUTHORIZATION_DECLINE_V2CARD_AUTHORIZATION_RESOLUTIONCARD_FRAUD_CASE_PENDINGCARD_FRAUD_CASE_TIMEOUT
You must integrate all mandatory features highlighted in the Onboarding requirements guide before going live.
Collect mandatory data points in your sign-up flow, including timestamps for the customer's consent to the legal and compliance screens.
Pass this data to Solaris by creating a person resource.
API reference
For a complete list of endpoints, properties, and examples related to the person resource, visit the following links:
Related webhook events
Please consider the special requirements for data collection highlighted in the onboarding requirements guide.
You must submit the information exactly as it appears in official documents.
When testing the process on Sandbox, please ensure that each person you create has unique values for
first_name,last_name,birth_city, andbirth_date. If you create over 1000 identical person resources, the API will return a400error.Don't use any personal data when testing this endpoint on Sandbox.
- The mandatory data points required for retail customers may differ depending on the country in which you're opening the account. The following example outlines the mandatory fields for Germany. For information about other countries, please refer to the Onboarding requirements guide
Call this endpoint to create a person resource for your customer, and add the following mandatory data points in the request body:
Mandatory data points for retail customers in Germany
salutationfirst_namelast_nameaddressline_1line_2postal_codecitycountry
mobile_number: This field is only used to pass the mobile number to our KYC provider IDnow for the Videoident KYC flow. To create and verify a mobile number for your customer, you need to use the dedicated mobile number endpoints.birth_datebirth_city(must be a valid city)birth_countrynationalityemployment_statusfatca_relevantfatca_crs_confirmed_atterms_conditions_signed_atdata_terms_signed_atown_economic_interest_signed_attax_informationmarital_status
Request URL
POST /v1/personsClick here to view the full API reference.
This endpoint updates one or more properties on a person resource. You can only update the following properties using this endpoint:
titlesalutationaddress(line_1,line_2,postal_code,city,state,country)contact_address(line_1,line_2,postal_code,city,state,country)employment_statusjob_titleemailtax_information(tax_assessment,marital_status)fatca_relevantfatca_crs_confirmed_atbusiness_purposeindustryindustry_keyown_economic_interest_signed_ataml_confirmed_on(only with today or tomorrow's date)expected_monthly_revenue_centsvat_numberwebsite_social_mediabusiness_trading_namenace_codebusiness_address_line_1business_address_line_2business_postal_codebusiness_citybusiness_countryannual_income_rangedata_terms_signed_atbranchbirth_provincebirth_post_codesocioprofessional_categorypurpose_of_account_openingmain_income_sourcework_countrywork_provinceself_declared_as_pepinternational_operativity_expectationregistration_number
- Fields not mentioned in this list can only be updated via Customer Support.
- Only for B2C customer: If a customer changes their
employment_statustoFREELANCERorSELF_EMPLOYED, please note that you must apply one of the following options to the same request to avoid getting an error:- Collect the
nace_codefrom the customer, or - Set the fields
industryandindustry_keytonull.
- Collect the
- Solaris recommends collecting the
nace_codefrom the customer for the sake of data quality.
Request URL
PATCH /v1/persons/{id}Click here to view the full API reference
Collect the customer's mobile number, create a mobile number resource, and verify it via SMS OTP. The customer must enter the OTP in your frontend to complete verification.
This data point is required for all customers.
Creating and verifying a mobile number for your customer is a crucial step in the customer onboarding process. With a verified mobile number, customers can use SMS OTPs to complete two-factor authentication (2FA) challenges, which is a requirement for Strong Customer Authentication (SCA).
- In some use cases (e.g., stand-alone integrations, the mobile number is verified during the identification process).
Visit the following link to find all the endpoints related to the mobile number resource, including related properties and examples.
Related webhook events
To test the following endpoints on Sandbox, you can use the following static values:
- Mobile number:
+15550101 - SMS OTP:
212212
Collect the customer's mobile number and pass it to Solaris using the following API call, and include the customer's person_id in the request URL.
Request example:
POST /v1/persons/{person_id}/mobile_number
{
"number": "+15550101"
}Response example:
The API returns a mobile_number resource with a unique id and attaches it to the person resource.
{
"id": "91e4d939d781b8eb30d1ee86809761c2cmno",
"number": "+15550101",
"verified": false
}Click here to view the full API reference.
Use the following endpoint to verify the ownership of the provided mobile phone number. The endpoint initiates a one-time-password (OTP) flow: Solaris sends a six-digit OTP to the customer's number, and then they must enter it in your UI.
Request example:
POST /v1/persons/{person_id}/mobile_number/authorize
{
"number": "+15550101"
}Response example:
{
"id": "91e4d939d781b8eb30d1ee86809761c2cmno",
"number": "+15550101",
"verified": false
}Click here to view the full API reference..
Use this endpoint to submit the SMS OTP the customer received on their mobile number to finalize the mobile number authorization process. You must add the customer's number and token (i.e., the SMS OTP) in the request body. Afterward, the mobile number will be verified and can be used in the context of Strong Customer Authentication (SCA).
Request example:
POST /v1/persons/{person_id}/mobile_number/confirm
{
"number": "+15550101",
"token": "212212"
}Response example:
{
"id": "91e4d939d781b8eb30d1ee86809761c2cmno",
"number": "+15550101",
"verified": true
}Click here to view the full API reference.
For more information about how to manage mobile numbers, check the related guide.
Collect relevant tax information and create a tax identification resource.
Submitting the tax information of your customers is a requirement to open a bank account in all of Solaris branches. However, please note the following:
You can open the bank account for customers in Germany (DE branch) before they provide tax information. However, you must submit the customer's tax information to Solaris within 90 days of opening the account. Otherwise, Solaris will block the customer's account with the reason
MISSING_TAX_INFORMATIONuntil you submit the required tax information.If a customer has multiple tax residencies (i.e., taxable in multiple countries), you must create a separate tax identification resource for each tax residency and specify only one of them as
primary.The first
tax_identificationto be submitted for apersonor abusinessmust be the primary tax identification. If anothertax_identificationwith the value ofprimaryset totrueis created, it will set theprimaryvalue of the previously createdtax_identificationtofalse.A
personorbusinessmay only have onetax_identificationpercountry.When creating a
tax_identification, explicitly collect thecountryvalue from the user and do not default to their physical residence (i.e., thecountryproperty of thepersonresource).Check the Onboarding requirements guide for more information about the TIN requirements per country.
For a complete list of endpoints, properties, and examples related to the person tax identification resource, visit the following links:
Related webhook events
Call this endpoint to create a person tax identification for the customer with the person_id specified in the request URL. Collect the following tax information from your customers and pass them to Solaris in the request body:
numbercountryprimary
If the customer has not submitted their TIN to your solution yet (i.e., the value of number is null), then include the following properties in the request:
reason_no_tin: Possible values areNOT_ASSIGNED_YET,NOT_ASSIGNED_BY_COUNTRY,OTHER.reason_description: Applies only if thereason_no_tinisOTHER.tax_id_type: (Only for Spain) Possible values areNIEandNIF.
Request example:
POST /v1/persons/{person_id}/tax_identificationsClick here to view the full API reference.
You can use the following test values for the TIN to test these endpoints on Sandbox:
| Country | TIN testing values |
|---|---|
| DE | 48954371207 |
| FR | 3023217600053 |
| IT | SSSNNN31B28X000C |
| ES | Test data can be generated from this website |
Before starting identification, your solution must display the Solaris compliance disclaimer and collect the customer's agreement.
Refer to the UI requirements and legal text in the Legal and compliance screens guide.
In this phase, you trigger the Know Your Customer (KYC) process. While the customer completes identification, Solaris performs mandatory background checks (Customer Due Diligence and FATCA).
Before proceeding to account creation, you must verify that all status checks are successful.
All customers must be successfully identified to use Solaris products. Solaris offers different methods based on product, region, and customer type. This guide describes video identification with IDnow (available for customers residing in Germany with supported documents).
Consult the onboarding requirements guide for suitable KYC methods per country, and contact your Partner Manager to select the best method for your use case.
Create an identification resource and trigger the process using the following endpoints:
API reference
- This guide focuses on video identification with IDnow.
- Ensure you have completed the IDnow technical prerequisites (e.g., mobile SDKs or web redirects).
Related webhook events
Call this endpoint to initialize the identification process. You must specify the method (idnow) and the customer's preferred language.
Required fields:
method: Set toidnow.language:ENorDE.proof_of_address_type: Required if the ID document does not show the address (e.g., Passport).proof_of_address_issued_at: Required if providing a proof of address (must be < 6 months old).
Creating the resource does not start the video call. You must trigger it in the next step.
Request example
POST /v1/persons/{person_id}/identifications
{
"method": "idnow",
"language": "DE",
"proof_of_address_type": "GAS_BILL",
"proof_of_address_issued_at": "2022-09-21"
}Response example
Returns an identification object with status created.
{
"id": "6dc54352d6793a892e0702850d07b831cidt",
"status": "created",
"method": "idnow",
...
}Click here to view the full API reference.
The method idnow_custom allows for a customized IDnow flow. If you are interested in offering this to your customers, please contact your Partner Manager.
Before redirecting the customer, check which documents are supported for their country. This avoids user frustration if they attempt to use an unsupported ID.
GET /v1/persons/{person_id}/identifications/{id}/supported_documentsClick here to view the full API reference
Call this endpoint to generate the required tokens and URLs for the IDnow session.
PATCH /v1/persons/{person_id}/identifications/{id}/requestResponse example
The status changes to pending. The response contains two critical fields depending on your integration type:
url: Use this for Web integrations (redirect the user here). Valid for 14 days.reference: Use this token for Mobile SDK (iOS/Android) integrations.
{
"id": "6dc54352d6793a892e0702850d07b831cidt",
"reference": "TST-KCCEY",
"url": "[https://go.test.idnow.de/solarisbankvideoidentsandbox/identifications/](https://go.test.idnow.de/solarisbankvideoidentsandbox/identifications/)...",
"status": "pending",
...
}Click here to view the full API reference.
Once you redirect the customer (Web) or initialize the SDK (Mobile), the IDnow session begins.
- Consent & Setup: The customer lands on an IDnow-branded page. They must consent to Terms & Conditions and confirm they have a valid ID document ready.
- Mobile Verification: The customer provides a mobile number. The IDnow agent sends an SMS OTP to this number during the call to verify possession.
- Video Call: The agent connects via video to verify the customer's face and ID document live.
- Data Update: If the agent detects missing or incorrect data (e.g., name spelling), they will update the record directly. These changes are automatically reflected in the
personresource.
Once the webhook IDENTIFICATION signals success, retrieve the final data.
Use the ?include_documents=true query parameter to download the images of the ID document and the user's face.
GET /v1/persons/{person_id}/identifications/{id}Click here to view the full API reference.
- List IDnow attempts (Audit log of failed/aborted calls)
- Upload additional documents
In addition to identification, Solaris runs risk screening and customer vetting checks (CDD).
- Results are stored in the
personresource. - All CDD-related properties must be
greento onboard the customer.
For details, see the Customer Due Diligence guide.
To comply with the Foreign Account Tax Compliance Act (FATCA), Solaris is required to perform checks to determine whether the customer is subject to US tax law. These checks are in addition to the self-declaration during the Legal and Compliance screen.
To perform the FATCA checks, parse the person and identification resources using the following endpoints:
To determine the customer's FATCA relevance, you must screen for the following hard criteria:
- Has the customer provided a US passport as their identification document? Check the
legitimation_countryattribute on the identification resource. - Is the customer a citizen of the US? Check the
nationalityattribute. - Has the customer provided a residential address in the US, the US Minor Outlying Islands, or the US Virgin Islands? Check the
countryattribute. - Was the customer born in the US, the US Minor Outlying Islands, or the US Virgin Islands? Check the
birth_countryattribute.
When to reject the customer
If any of these hard criteria attributes have the value of US or USA, you must deny banking services to the customer and stop the onboarding process. Failure to screen for these hard FATCA criteria may cause ongoing operational burdens for Solaris customer support.
To further determine the customer's FATCA relevance, screen for the following soft criteria:
- Has the customer provided a US mobile number? Check the
mobile_numberattribute. US mobile numbers have a country code of +1. - Is the customer's only address a PO box or a c/o address? Check the
address_line_1andaddress_line_2attributes.
When to reject the customer
- If the answer is "Yes" to any of the soft criteria, ask the customer to clarify their phone number and/or address.
- If the customer provides a non-US phone number and a physical address, you may onboard them.
- If the customer does not provide a non-US phone number and a physical address, you may not onboard them.
Failure to screen for soft FATCA criteria may cause ongoing operational burdens for Solaris customer support.
Note that Solaris periodically checks FATCA relevance for existing customers. If a customer's FATCA relevance changes to true, Solaris's Customer Support team will provide further instructions.
To comply with regulatory requirements, Solaris must keep copies of valid identification documents for active customers in its Italy and Spain branches. This requirement applies to the following customer segments:
- Retail customers
- Freelancers & Sole proprietors
- Businesses' legal representatives
- Authorized persons on a business or a retail account
How will you be notified of the expiry of ID documents?
In Italy and Spain, Solaris stores the expiry date of a customer's identification document and calculates a follow-up date to notify you before it expires. You'll receive a webhook notification on the event POTENTIAL_ACCOUNT_BLOCKING 30 days before the expiry date, and then every 30 days until 90 days after the expiry.
The webhook payload includes the blocking_date, which is the date by which the account will be blocked if the customer has not identified again with a valid ID document, and the reason for the account blocking is set to IDENTIFICATION_DOCUMENT_EXPIRED.
What should you do?
After receiving a notification on the POTENTIAL_ACCOUNT_BLOCKING webhook event, you should take the following steps:
- Create a new identification resource for the customer and specify the identification
methodusing the POST Create an identification. - Request the identification for the customer by calling PATCH Request an identification.
- Notify the customer that they must complete the KYC flow with their new valid ID document.
- After successful KYC, Solaris will store the expiry date of the new ID document and calculates a new follow-up date.
If the customer did not identify with a valid ID document within 90 days after the expiry date, the customer's account will be blocked with the reason IDENTIFICATION_DOCUMENT_EXPIRED. If a new ID document is submitted, the account will be unblocked.
Which KYC method to use?
For the re-identification due to expired ID documents, you can choose between the following methods:
- Fourthline
- IDnow AutoIdent
Before opening an account, retrieve the person resource and verify all the following conditions. Any "yellow" or "red" status will block onboarding.
| Check | Resource & Field | Required "Green" Status |
|---|---|---|
| KYC Identification | identification.status | Must be successful |
| Mobile Number | mobile_number.verified | Must be true |
| Tax Identification | tax_identifications | At least one primary record must exist. (For DE branch, can be provided within 90 days) |
| FATCA Screening | Various person fields | Must have no hard or unresolved soft criteria |
| Customer Screening | person.screening_progress | Must be SCREENED_ACCEPTED |
| Risk Classification | person.risk_classification_status | NORMAL_RISK, RISK_ACCEPTED, or SCORING_NOT_REQUIRED |
| Customer Vetting | person.customer_vetting_status | NO_MATCH, RISK_ACCEPTED, or VETTING_NOT_REQUIRED |
You have successfully completed the identification process. You can now open an account for the customer.
Present the customer with a button to open their account using the specific formulations below:
English
Order / Open account (subject to a charge)
German
Bestellen / Konto eröffnen (zahlungspflichtig)
(Consult your Partner Manager if you wish to use different text.)
Once onboarded, you can create a card for the customer (physical or virtual).
See the Cards Creation and Servicing guide for instructions.
Congratulations! You have successfully created a person resource, opened an account, and issued a card.
Critical Next Step: Authentication The customer cannot log in or authorize payments yet. You must now implement the security framework:
- Bind a Device: Link the customer's smartphone to their account. This is required for Strong Customer Authentication (SCA).
- Implement Login & SCA: Set up the flows for logging in and authorizing sensitive actions.
To set the value of annual_income_range, you may offer the customer a drop-down list with the following numeric values for each range:
| Range | Value |
|---|---|
RANGE_1 | < 20000 |
RANGE_2 | 20000 - 40000 |
RANGE_3 | 40000 - 60000 |
RANGE_4 | 60000 - 100000 |
RANGE_5 | 100000 - 200000 |
RANGE_6 | 200000 - 400000 |
RANGE_7 | > 400000 |
The following table includes the possible values for the field document_type and their descriptions.
| Enum | Description |
|---|---|
ANNUAL_FINANCIAL_STATEMENT | A business or a company's annual financial statement. |
KYC_REPORT | The KYC report generate after a successful customer identification. |
ID_DOCUMENT | An person's identification document, such as passport or ID. |
SIGNATURE | A signature example. |
PICTURE | A picture or a scanned document of any other type. |
QES_DOCUMENT | A document related to a Qualified Electronic Signature (QES). |
SIGNED_CONTRACT | A signed contract of any kind. |
SIGNED_QES_DOCUMENT | A document signed by a Qualified Electronic Signature (QES). |
REGISTER_CHECK | A register check. |
REGISTER_EXTRACT | A business or a company's commercial register excerpt or a similar document. |
FOUNDATION_DOCUMENT | The foundation document of a company or business. |
SCHUFA_COMPACT_REPORT | A compact SCHUFA report. |
SCHUFA_GWG_REPORT | A GWG SCHUFA report. |
SCHUFA_FULL_REPORT | A full SCHUFA report about a person. |
SCHUFA_SHORT_REPORT | A short SCHUFA report about a person. |
CREDIT_AGENCY_REPORT | A report issued by a credit agency. |
SHARE_HOLDERS_AGREEMENT | A business or a company's shareholders agreement. |
SHAREHOLDERS_LIST | A business or a company's shareholders list. |
TRADING_LICENSE | A business or a company's trading license. |
TRANSPARENCY_REGISTER_EXTRACT | An extract of a transparency register. |
INVOICE | An invoice of any kind. |
OTHER | Any other type of document. |
VIDEO | A video of any kind. |
VAT_CERTIFICATE | VAT registration certificate |
The following table includes the possible values for the field status for the video identification process carried out by IDnow and the related description of each status.
| Status | Description |
|---|---|
created | The identification resource has been created for the customer. |
pending | The identification process has been triggered and the video identification URL and reference are generated. You must redirect the customer to the URL to complete the identification process with IDnow. |
pending_failed | The identification is currently under review. You cannot offer banking services to the customer at this stage. The identification might eventually turn to successful, but it is unlikely. |
successful | The video identification was successful. The customer can be onboarded. Please note that the customer's data might have been updated during the identification session. |
aborted | The customer aborted the identification process. The customer can still video-identify using the same URL. |
canceled | The provider canceled the video identification. The customer should video-identify again using the same URL. |
failed | The identification was unsuccessful. You cannot onboard the customer or offer any banking services to them. |
IDnow provides a reason whenever the identification has a canceled or aborted status. No reason can be disclosed for the final failed status.