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

Direct URL

Landing SDK integration via direct URL

Method without extra information

In this case, the process is much simpler: the apiKey is provided by us automatically to the destination page without the need to generate it; you only need to integrate the URL of our gateway into the Flow you want. The data will be provided to the customer through a webhook.

Output URL: The client provides the address to complete

Example:

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

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

Once the Flow has finished, the page will be redirected to the URL previously indicated by the client, so no additional configuration is required.

Last updated