Skip to main content

Integration Examples

A typical integration keeps the SDK behind a thin application helper.

Example Pattern

import {biometricClientHelper} from 'sophid-web-sdk';

export const sophidClient = biometricClientHelper.init(config);

Then application code calls sophidClient.enrollUser() or sophidClient.authenticateUser() without duplicating the transport logic across pages.

  • One initialization module
  • One place for API endpoint configuration
  • Thin UI components that call high-level methods