For the complete documentation index, see llms.txt. This page is also available as Markdown.

Integration examples

Selection of complete Landing SDK integration examples

Integration Low Code via Client SDK

Simple implementation that will load the related Landing SDK in the apiKey with the configuration provided in the method callLanding.

Once the Flow is concluded, it will send the data to the address calbackPath indicated, and it will be enough to continue or direct the customer's business logic from there.

const landingSDK = new LandingSDKClient('YOUR_APIKEY', {
  uniqueUrl: true
});

landingSDK.callLanding({
  customerId: '[email protected]',
  documentNumber: '1234567A',
  callbackPath: 'https://url-callback-example.com/api/onboarding'
});

Integration No Code from Landing SDK through a direct URL.

The Facephi team will provide an address with the Landing SDK already operational and preconfigured, which will automatically lead to the address the user previously specified.

<button type="button" onclick="goToLanding()">Register</button>

<script>
// Custom method to navigate to SDK Landing
function goToLanding() {
    navigate('https://facephi-landing-url.com');
}
</script>

Integration through embedded form

The Landing SDK will be called from a form in which the data to be sent will be entered.


Landing SDK through request to Rest API

The request for the Landing SDK page will be made from a backend request.


Last updated