.NET Server API SDK

The Fingerprint Server C#/.NET SDK is an easy way to interact with our Server API from your .NET application. You can retrieve visitor history or individual identification events.

How to install

Install the package from NuGet.

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).

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.