Onboarding Forms

As covered in OneSDK - Individual Details, you can use the individual object to update user details and verify them.

OneSDK also lets you easily embed onboarding forms into your frontend app to capture details like name, DOB, address, and GovID.

Similar to other OneSDK modules, you can create the onboarding form when initializing OneSDK. Customize the form by passing a configuration object. To activate the modular onboarding forms, provide a recipe configuration during OneSDK initialization.

📘

OneSDK Initialisation

Before using OneSDK forms, make sure to follow the instructions in the Getting started page, to learn how to initialise OneSDK in general.

Form recipe configuration:

const oneSdk = await OneSdk({
  session: sessionObjectFromBackend,
  recipe: {
    form: {
      provider: {
        name: 'react',
      },
    }
  }
});

For details on how to configure the forms, please navigate to the following pages: