Skip to main content

Server SDKs for v4 API coming soon

We are working on new major versions of all our SDKs. If you need to use this integration, please use the v3 API instead or generate your own from the Server API OpenAPI schema.

How to install

Install the package from NuGet.
Bash
dotnet add package FingerprintPro.ServerSdk
Initialize the client instance and use it to make API requests. You need to specify your secret API key and region (if it is not US/Global).
C#
using FingerprintPro.ServerSdk.Api;
using FingerprintPro.ServerSdk.Client;

var configuration = new Configuration("<SECRET_API_KEY>");
// configuration.Region = Region.Eu;

var api = new FingerprintApi(
    configuration
);

// Get visit history of a specific visitor
var visits = api.GetVisits("<visitorId>");
Console.WriteLine(visits);

// Get a specific identification event
var events = api.GetEvent("<requestId>");
Console.WriteLine(events);

Documentation

You can find the full documentation in the official GitHub repository.