Skip to main content
Deprecation NoticeThis page documents the .NET Server SDK for Server API v3. The .NET Server SDK now supports Server API v4. Please use the latest .NET Server SDK instead.

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.