SanctionsSearch.Api2.ServiceModel
1.0.1
dotnet add package SanctionsSearch.Api2.ServiceModel --version 1.0.1
NuGet\Install-Package SanctionsSearch.Api2.ServiceModel -Version 1.0.1
<PackageReference Include="SanctionsSearch.Api2.ServiceModel" Version="1.0.1" />
paket add SanctionsSearch.Api2.ServiceModel --version 1.0.1
#r "nuget: SanctionsSearch.Api2.ServiceModel, 1.0.1"
// Install SanctionsSearch.Api2.ServiceModel as a Cake Addin #addin nuget:?package=SanctionsSearch.Api2.ServiceModel&version=1.0.1 // Install SanctionsSearch.Api2.ServiceModel as a Cake Tool #tool nuget:?package=SanctionsSearch.Api2.ServiceModel&version=1.0.1
Sanctions Search API v2 - Service Models
Package
This package contains data models for use with our public API (v2).
Sanctions Search
Sanctions Search is an anti-money laundering, financial sanctions, and compliance platform.
Our platform gives businesses an affordable solution to ensure compliance with local and international laws regarding:
- Anti-Money Laundering (AML)
- Financial Sanctions
- Politically Exposed Persons/Entities (PEP)
- Identity Verification
- Document Capture
- Criminal Records Checks (DBS / CRB)
- And more...
For more information please see our website: Sanctions Search
Usage
This is a dependency package for our Sanctions Search API v2 SDK package which we would recommend.
It can be used on its own or in combination with your favorite HTTP based clients but is designed to work with ServiceStack Service Clients.
using SanctionsSearch.Api2.ServiceModel.Operations.Searches;
using ServiceStack;
// API base URI
var baseUri = "https://api.sanctionssearch.com/v2";
// JSON API client for .NET 6+
var client = new JsonApiClient(baseUri);
// A new "Add Sanctions Search" request
var request = new AddSearch
{
Authentication =
{
ApiUserId = "Your-Api-User-Id",
ApiUserKey = "Your-Api-Key"
},
Request =
{
Name = "Jane Smith",
Address = "123 Main Street",
Type = "individual",
SelectedLists = ["HMTSL", "OFACL"]
}
};
// Make the request
// ServiceStack knows the correct path and HTTP verb
// e.g. POST sanctions/add
var response = await _client.SendAsync(add);
// Response contains information about the searched for person
var searchId = response.Data.SearchRecord.Id;
var numberOfSearchResults = response.Data.SearchRecord.NumOfResults;
For older versions of .NET you can use different ServiceStack clients
// JSON API client for .NET 6+
var modernClient = new JsonApiClient(baseUri);
// Or, JSON client based on HttpClient
var httpClient = new JsonHttpClient(baseUri);
// Or legacy clients based on HttpWebRequest
var jsonServiceClient = new JsonServiceClient(baseUri);
var xmlServiceClient = new XmlServiceClient(baseUri);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. 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 is compatible. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- ServiceStack.Interfaces (>= 5.0.0)
-
net6.0
- ServiceStack.Interfaces (>= 8.1.0)
-
net8.0
- ServiceStack.Interfaces (>= 8.1.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on SanctionsSearch.Api2.ServiceModel:
Package | Downloads |
---|---|
SanctionsSearch.Api2.Sdk
Client SDK for v2 of the Sanctions Search API |
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial Release