IDAnalyzer.V2 1.1.0

Suggested Alternatives

IDAnalyzerV2

Additional Details

Renamed — use IDAnalyzerV2

dotnet add package IDAnalyzer.V2 --version 1.1.0
                    
NuGet\Install-Package IDAnalyzer.V2 -Version 1.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IDAnalyzer.V2" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IDAnalyzer.V2" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="IDAnalyzer.V2" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add IDAnalyzer.V2 --version 1.1.0
                    
#r "nuget: IDAnalyzer.V2, 1.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package IDAnalyzer.V2@1.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=IDAnalyzer.V2&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=IDAnalyzer.V2&version=1.1.0
                    
Install as a Cake Tool

ID Analyzer .NET SDK (API v2)

.NET client library for the ID Analyzer API v2 — worldwide passport, driver license and ID card scanning, biometric face/liveness verification, AML/PEP screening, DocuPass remote verification & e-signature, KYC profile management and contract generation.

This is the API v2 SDK, published as IDAnalyzer.V2. The legacy IDAnalyzer package id remains the API v1 SDK.

Installation

dotnet add package IDAnalyzer.V2

Base URL / Region

Defaults to the US fleet (https://api2.idanalyzer.com). Set the environment variable IDANALYZER_REGION=eu to use the EU fleet (https://api2-eu.idanalyzer.com). An unrecognized value throws InvalidArgumentException.

Quick start

using IDAnalyzer;

var p = new Profile(Profile.SECURITY_MEDIUM);
var s = new Scanner("YOUR_API_KEY");
s.throwApiException(true);
s.setProfile(p);
var result = s.scan("id_front.jpg");
Console.WriteLine(result);

Coverage

Scanner (scan / quickScan / veryQuickScan), Biometric (verifyFace / verifyLiveness), AML (search / searchV3), Contract (generate + template CRUD), Transaction (get / list / update / delete / export / saveImage / saveFile), Docupass (create / list / get / delete), ProfileAPI (KYC profile CRUD + export), Webhook (list / resend / delete), Account (getAccount).

Full examples and reference: https://github.com/idanalyzer/id-analyzer-v2-dotnet

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0 107 6/3/2026 1.1.0 is deprecated because it has critical bugs.

1.1.0

Full API v2 surface parity (veryquickscan, aml, amlv3, KYC profile CRUD, webhook management, account, single-docupass get).
Base URL now defaults to the load-balanced api2.idanalyzer.com (was the single-node v2-us1.idanalyzer.com); unknown IDANALYZER_REGION now throws.
Fixed updateTransaction decision validation and Profile.webhook protocol guard.
Published under the new package id IDAnalyzer.V2 (the legacy IDAnalyzer package remains the API v1 SDK).