Amilon.B2B.API.Client 3.0.23

dotnet add package Amilon.B2B.API.Client --version 3.0.23                
NuGet\Install-Package Amilon.B2B.API.Client -Version 3.0.23                
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="Amilon.B2B.API.Client" Version="3.0.23" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Amilon.B2B.API.Client --version 3.0.23                
#r "nuget: Amilon.B2B.API.Client, 3.0.23"                
#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 Amilon.B2B.API.Client as a Cake Addin
#addin nuget:?package=Amilon.B2B.API.Client&version=3.0.23

// Install Amilon.B2B.API.Client as a Cake Tool
#tool nuget:?package=Amilon.B2B.API.Client&version=3.0.23                

Amilon B2B API Client

This client allows you to connect and use Amilon's B2B API services.

Usage


Single Tenant

You can configure the authentication parameters in the appsettings.json. Depending on your authentication type, you can configure

  • ClientId
  • ClientSecret

or/and optionally

  • UserName
  • Password
  "B2B_API_Client": {
    "Environment": "STG",
    "ClientId": "your-client-id",
    "ClientSecret": "your-client-secret",
    "UserName": "your-username",
    "Password": "your-password",
    "Version": "2",
    "GrantType": "password",
    "Timeout": 60000
  }

You can configure the client in your app through Dependency Injection

  • Startup.cs
public IConfiguration Configuration { get; }

public Startup(IConfiguration configuration)
{
    Configuration = configuration;
}

public void ConfigureServices(IServiceCollection services)
{
    services.AddB2BClient(Configuration);
}
  • Host Builder
var builder = Host.CreateApplicationBuilder(args);
builder.Services.AddB2BClient(builder.Configuration);

Multi Tenant

You can configure the authentication parameters in the appsettings.json. Depending on your authentication type, you can configure

  • ClientId
  • ClientSecret

or/and optionally

  • UserName
  • Password

In this Multi Tenant mode, you can customize the appSettings to your own needs, it does not have to use a specific structure as the client will be initialized manually using the needed parameters in the AddB2BClient method call.

"B2B_API_Client": {
    "Environment": "STG",
    "Version": "2",
    "GrantType": "password",
    "Timeout": 60000
},
"MultiTenant": [
    {
        "ClientId": "your-client-id_1",
        "ClientSecret": "your-client-secret_1",
        "B2BCredentials": {
            "UserName": "your-user-name_1",
            "Password": "your-password_1"
        }
    },
    {
        "ClientId": "your-client-id_2",
        "ClientSecret": "your-client-secret_2",
        "B2BCredentials": {
            "UserName": "your-user-name_2",
            "Password": "your-password_2"
        }
    },
]   

You can configure the client in your app through Dependency Injection. MultiTenantHelper is a placeholder for a class you can make in order to get the specific credentials for a specific ClientId.

  • Startup.cs
public IConfiguration Configuration { get; }

public Startup(IConfiguration configuration)
{
    Configuration = configuration;
}

public void ConfigureServices(IServiceCollection services)
{
    var b2bConfig = Configuration.GetSection("B2B_API_Client").Get<B2BConfig>();

    services.AddB2BClient(_ =>
    {
        var config = new B2BConfig();
        var b2bCredentials = MultiTenantHelper.GetB2BCredentials();
        config.ClientId = b2bCredentials.ClientId;
        config.ClientSecret = b2bCredentials.ClientSecret;
        config.GrantType = b2bConfig.GrantType;
        config.Version = b2bConfig.Version;
        config.Password = b2bCredentials.Password;
        config.UserName = b2bCredentials.UserName;
        return config;
    }, b2bConfig.Environment, b2bConfig.Timeout);
}
  • Host Builder
var builder = Host.CreateApplicationBuilder(args);

var b2bConfig = builder.Configuration.GetSection("B2B_API_Client").Get<B2BConfig>();

builder.Services.AddB2BClient(_ =>
{
    var config = new b2bConfig();
    var b2bCredentials = MultiTenantHelper.GetB2BCredentials();
    config.ClientId = b2bConfig.ClientId;
    config.ClientSecret = b2bConfig.ClientSecret;
    config.GrantType = b2bConfig.GrantType;
    config.Version = b2bConfig.Version;
    config.Password = b2bCredentials.Password;
    config.UserName = b2bCredentials.UserName;
    return config;
}, b2bConfig.Environment, b2bConfig.Timeout);
Product 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 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
3.0.23 65 11/6/2024
3.0.21 75 10/29/2024
3.0.20 80 10/25/2024
3.0.19 80 10/23/2024
3.0.18 78 10/10/2024
3.0.17 103 9/13/2024
3.0.16 91 9/9/2024
3.0.15 99 9/3/2024
3.0.13 99 5/13/2024
3.0.12 101 5/8/2024
3.0.11 118 4/18/2024
3.0.10 97 4/18/2024
3.0.9 96 4/18/2024
3.0.8 95 4/18/2024
3.0.7 94 4/18/2024
3.0.6 103 4/18/2024
3.0.4 105 4/18/2024
3.0.3 100 4/18/2024
3.0.2 106 4/18/2024
3.0.1 128 4/18/2024
2.3.1 123 3/4/2024
2.2.3 224 6/7/2023
2.2.2 182 6/7/2023
2.2.1 175 6/6/2023
2.1.4 172 5/2/2023
2.1.2 259 3/21/2023
2.1.1 236 3/16/2023
2.0.13 387 11/11/2022
2.0.12 379 11/11/2022
2.0.11 532 6/24/2022
2.0.10 444 6/23/2022
2.0.9 447 6/9/2022
2.0.8 455 6/9/2022
2.0.7 456 6/9/2022
2.0.6 463 6/9/2022
2.0.2 478 6/9/2022 2.0.2 is deprecated because it has critical bugs.
2.0.1 451 6/9/2022 2.0.1 is deprecated because it has critical bugs.
1.8.6 462 6/9/2022 1.8.6 is deprecated because it has critical bugs.
1.8.0 478 6/8/2022 1.8.0 is deprecated because it has critical bugs.
1.7.1-beta 189 5/2/2022
1.6.0 494 3/5/2021
1.5.1 400 3/5/2021
1.5.0 403 2/12/2021
1.0.1 104 5/15/2024