Digbyswift.Experian.CrossCore 1.0.0-beta1

Prefix Reserved
This is a prerelease version of Digbyswift.Experian.CrossCore.
dotnet add package Digbyswift.Experian.CrossCore --version 1.0.0-beta1                
NuGet\Install-Package Digbyswift.Experian.CrossCore -Version 1.0.0-beta1                
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="Digbyswift.Experian.CrossCore" Version="1.0.0-beta1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Digbyswift.Experian.CrossCore --version 1.0.0-beta1                
#r "nuget: Digbyswift.Experian.CrossCore, 1.0.0-beta1"                
#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.
// Install Digbyswift.Experian.CrossCore as a Cake Addin
#addin nuget:?package=Digbyswift.Experian.CrossCore&version=1.0.0-beta1&prerelease

// Install Digbyswift.Experian.CrossCore as a Cake Tool
#tool nuget:?package=Digbyswift.Experian.CrossCore&version=1.0.0-beta1&prerelease                

Digbyswift - Experian CrossCore

Overview

This is a roll-your-own implementation of the Experian API AML (Anti-Money Laundering) function set. The offical API .NET library is https://github.com/experianplc/experian-dotnet but at the time of writing, this does not cater for AML checks.

Request implementation

The client is expected to be registered at application start up along with the configuration:

composition.Register<IExperianCrossCoreConfig, ExperianCrossCoreConfig>(Lifetime.Singleton);
composition.Register<ExperianClient>(Lifetime.Singleton);

Requests can then be called as such:

var payload = new RequestPayload();

var result = await _client.PostAsync<AmlResponse>(url, payload);

Response implementation

Assuming that configuration is correct, all requests should return an AmlResponse object:

public class AmlResponse
{
    public ResponseHeader ResponseHeader { get; set; }
}

The response header will include all the data required to determine whether the request was acceted or not.

Assuming the request hasn't caused an application error, there are a range of decisions that an AML check can return. The only decision denoting a successful check is "Success".

Other decisions can be:

  • No decision
  • Stop
  • Refer

Admin dashboard

The Experian AML dashboard can be found:

https://uk-api.experian.com/decisionanalytics

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
.NET Framework net48 is compatible.  net481 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.0.0-beta1 35 1/15/2025