react-native-okhi
    Preparing search index...

    Function startPhysicalAddressVerification

    • Starts the physical address verification flow.

      Parameters

      • Optionalokcollect: OkCollect

        Optional configuration for styling and behavior

      Returns Promise<OkHiSuccessResponse>

      A promise that resolves with the user and location data

      Physical verification requires an agent to visit the user's location in person.

      Prerequisites:

      import * as OkHi from 'react-native-okhi';

      const result = await OkHi.startPhysicalAddressVerification();
      console.log('Verification requested for:', result.location.formattedAddress);
      console.log('Location ID for tracking:', result.location.id);
      import * as OkHi from 'react-native-okhi';

      // With custom configuration
      const result = await OkHi.startPhysicalAddressVerification({
      style: { color: '#2196F3' },
      });