Metaforce.WebEditor.Api.Client 4.0.0

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

// Install Metaforce.WebEditor.Api.Client as a Cake Tool
#tool nuget:?package=Metaforce.WebEditor.Api.Client&version=4.0.0                

Metaforce.WebEditor.Api clients

This client package aims to facilitate the integration with the Metaforce WebEditor api. There are two versions of this package:

The main difference is that the .NET Core package offers the ability to authenticate using mTLS, otherwise both packages offers the exact same funtionality.

Getting started

Download the package to include it in your project and enjoy 😃

Upgrading from version 1 to version 2

Due to refactoring classes have changed namespaces. Let Visual Studio do its magic and guide after your upgrade...

Usage Metaforce.WebEditor.Api.Client

ClientId/ClientSecret authentication

Setup your appsettings.json with the following configuration structure:

{
  "WebEditorClientOptions": {
    "AuthorityEndpoint": "https://identity-v2.metaforce.net",
    "ApiBaseAddress": "https://api.webeditor.metaforce.net",
    "ClientId": "YOUR_CLIENT_ID",
    "ClientSecret": "YOUR_CLIENT_SECRET",
    "Scopes": "api.external",
    "CustomerEnvironment": "Test"
  }
}

Configuration properties

  • AuthorityEndpoint - The URL of the Identity server. Should always be https://identity-v2.metaforce.net.
  • ApiBaseAddress - The base URL of the service. Should always be https://api.webeditor.metaforce.net.
  • ClientId - The ClientId of the api client. Get it from Centerpoint.
  • ClientSecret - The ClientSecret of the api client. Get it from Centerpoint.
  • CertificateThumbprint - The thumbprint of your client authentication certificate. This only works with the .NET Core package.
  • Scopes - The api client should always be scoped to "api.external". If one wants to further limit the scope of the api client one can also configure the api client to be scoped for webeditor.dev, webeditor.test, webeditor.stage, webeditor.demo and webeditor.prod. This scope can then be configured for an Interact environment to limit what clients can access the specific environment.
  • CustomerEnvironment - This value should point to the specific Interact environment the client should interact with. Possible values are Development, Test, Test1, Test2, Test3, Test4, Test5, IntegrationTest, AcceptanceTest and Production.

Configure services

var hostBuilder = new HostBuilder()
.ConfigureServices((context, services) =>
{
    _ = services.WebEditorClient(context.Configuration);
});

var host = hostBuilder.Build();

Usage Metaforce.WebEditor.Api.Client.Core

ClientId/ClientSecret authentication (Core)

See ClientId/ClientSecret authentication configuration above...

mTLS authentication

Setup your appsettings.json with the following configuration structure:

{
  "WebEditorClientOptions": {
    "AuthorityEndpoint": "https://identity-v2.metaforce.net",
    "ApiBaseAddress": "https://api.webeditor.metaforce.net",
    "ClientId": "YOUR_CLIENT_ID",
    "CertificateThumbprint": "YOUR_THUMBPRINT",
    "Scopes": "api.external",
    "CustomerEnvironment": "Test"
  }
}

Configuration properties (Core)

See Configuration properties above...

Configure services (Core)

var hostBuilder = new HostBuilder()
.ConfigureServices((context, services) =>
{
    _ = services.WebEditorClientCore(context.Configuration);
});

var host = hostBuilder.Build();

Client services

Once configuration is done you can use the following clients (interfaces) via dependency injection. Each interface corresponds to the api:s exposed by the Metaforce WebEditor api.

  • IWebEditorApiClient - Corresponds to the Interact controller used to generate ondemand documents in PDF- and HTML-format, creating WebEditor instances and working with the Dynamo (postprocess database).
  • IWebEditorArchive - Corresponds to the Archive controller used to interact with the Viewpoint archiving system.
  • IWebEditorDistribution - Corresponds to Distribution controller used to generate and distribute documents to digital mailboxes, email and SMS notification and more services.
  • IWebEditorStatus - Corresponds to Status controller used to controll and manage WebEditor instances.
Product Compatible and additional computed target framework versions.
.NET 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. 
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
4.0.0 33 11/17/2024
3.0.1 170 1/12/2024
3.0.0 153 12/31/2023
2.0.3 597 7/14/2023
2.0.2 165 7/14/2023
2.0.1 157 7/13/2023
2.0.0 162 7/13/2023
1.0.17 172 7/13/2023
1.0.16 631 10/24/2022
1.0.15 673 9/30/2022
1.0.14 418 9/30/2022
1.0.13 394 9/29/2022
1.0.12 402 9/29/2022
1.0.11 406 9/16/2022
1.0.10 707 4/27/2022
1.0.9 500 4/14/2022
1.0.8 446 4/14/2022
1.0.7 441 4/11/2022
1.0.6 435 4/11/2022
1.0.5 502 4/4/2022
1.0.4 436 4/1/2022
1.0.3 593 3/10/2022
1.0.2 607 1/24/2022
1.0.1 529 1/19/2022
1.0.0 453 1/19/2022
0.0.15 496 1/14/2022
0.0.14 458 1/13/2022
0.0.13 444 1/13/2022
0.0.12 480 1/11/2022
0.0.11 463 1/11/2022
0.0.10 299 1/5/2022
0.0.9 283 1/4/2022
0.0.8 289 1/4/2022
0.0.7 277 1/3/2022
0.0.6 294 1/2/2022
0.0.5 311 12/25/2021
0.0.4 395 12/14/2021
0.0.3 287 12/14/2021
0.0.2 293 12/14/2021
0.0.1 308 12/14/2021