Integration examples
Selection of complete Landing SDK integration examples
Integration Low Code via Client SDK
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.
<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
Landing SDK through request to Rest API
Last updated