Digbyswift.Experian.CrossCore
1.0.0-beta1
Prefix Reserved
dotnet add package Digbyswift.Experian.CrossCore --version 1.0.0-beta1
NuGet\Install-Package Digbyswift.Experian.CrossCore -Version 1.0.0-beta1
<PackageReference Include="Digbyswift.Experian.CrossCore" Version="1.0.0-beta1" />
paket add Digbyswift.Experian.CrossCore --version 1.0.0-beta1
#r "nuget: Digbyswift.Experian.CrossCore, 1.0.0-beta1"
// 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:
Product | Versions 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. |
-
.NETFramework 4.8
- Digbyswift.Core (>= 2.2.0)
- Serilog (>= 2.10.0)
- System.Configuration.ConfigurationManager (>= 8.0.1)
- System.Net.Http (>= 4.3.4)
- System.Text.Json (>= 8.0.5)
-
net6.0
- Digbyswift.Core (>= 2.2.0)
- Serilog (>= 2.10.0)
- System.Configuration.ConfigurationManager (>= 8.0.1)
- System.Net.Http (>= 4.3.4)
- System.Text.Json (>= 8.0.5)
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 |