Skip to main content

Server API v4 support coming soon

This server SDK currently supports Server API v3. If you need Server API v4 today, use it directly or see the current integration compatibility table.

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.