AnnytabWebshopClientAPI 1.0.7

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

// Install AnnytabWebshopClientAPI as a Cake Tool
#tool nuget:?package=AnnytabWebshopClientAPI&version=1.0.7

A client API in ASP.NET and C# that can be used to interact with a-webshop. You can use this client API to create applications in ASP.NET that interacts with a-webshop.

A quick start guide
Create an administrator in a-webshop with a API role, there is three different roles (API Full Trust, API Medium Trust, API Minimal Trust).

The namespace for the API is Annytab.WebshopClientAPI. You need to create a ClientConnection before you call methods in the API. All the methods is async so need to specify the await keyword before the method call.

// Create the connection
ClientConnection connection = new ClientConnection("https://localhost:44301", "TestAPI", "test");

// Get posts
List<Campaign> campaigns = await Campaign.GetAll(connection, 0, "id", "ASC");

// Dispose of the connection
connection.Dispose();

Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  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.7 1,684 11/6/2017
1.0.6 1,961 5/12/2015
1.0.5 1,727 3/30/2015
1.0.4 1,668 3/9/2015
1.0.3 1,845 2/2/2015
1.0.2 1,791 1/26/2015
1.0.1 1,783 1/21/2015
1.0.0 2,085 12/17/2014

Changed target framework to 4.6.1 and changed to UTF-8 encoding in connection classes.