Integration guide

AI Tools

There are four steps to follow to integrate the Identity verification SDK:

  1. Install the SDK

  2. Create the session

  3. Launch the user view

  4. Retrieve the results

This section will explain how to install the SDK.

Before you start
You will need to access your Yoti Hub account with an e-mail & password or using the Yoti mobile app and to have registered your business with Yoti. Click below for more info.

Installing the SDK

Please use our Yoti SDKs to automatically build the relevant session for you. First, you will need the following information about your application from Yoti Hub:

  • Yoti SDK ID

  • Your application key pair.

The Yoti SDKs are available via popular dependency management systems. Further details can be found on the pages of the Example code.

npm install -S -E yoti
// If you are using Maven, add the following dependency: <dependency> <groupId>com.yoti</groupId> <artifactId>yoti-sdk-api</artifactId> <version>3.8.0</version> </dependency> // If you are using Gradle, add the following dependency: implementation group: 'com.yoti', name: 'yoti-sdk-api', version: '3.8.0'
// Get the Yoti PHP SDK library via a Composer package composer require yoti/yoti-php-sdk
pip install yoti
// To install the Yoti NuGet package you will need to install NuGet. // To import the latest Yoti SDK into your project, enter the following // command from NuGet Package Manager Console in Visual Studio: Install-Package Yoti // For other installation methods, see https://www.nuget.org/packages/Yoti
// Simply add this as an import: import "github.com/getyoti/yoti-go-sdk/v3" // Or add the following line to your go.mod file require github.com/getyoti/yoti-go-sdk/v3 // Or you can run the following command in your terminal: go get github.com/getyoti/yoti-go-sdk/v3