How to install
Install the package from NuGet.Bash
C#
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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. View our .NET Server SDK quickstart for a step-by-step guide to get started.
dotnet add package FingerprintPro.ServerSdk
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("VISITOR_ID");
Console.WriteLine(visits);
// Get a specific identification event
var events = api.GetEvent("REQUEST_ID");
Console.WriteLine(events);
Was this page helpful?