Tusk 1.0.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Tusk --version 1.0.1.1                
NuGet\Install-Package Tusk -Version 1.0.1.1                
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="Tusk" Version="1.0.1.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tusk --version 1.0.1.1                
#r "nuget: Tusk, 1.0.1.1"                
#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 Tusk as a Cake Addin
#addin nuget:?package=Tusk&version=1.0.1.1

// Install Tusk as a Cake Tool
#tool nuget:?package=Tusk&version=1.0.1.1                

Tusk - the C# library for the Tusk Logistics API

This is an experimental C# SDK for the Tusk Logistics API. Most of it was generated by the OpenAPI Generator project. However, some manual changes were made to the generated code to make it more C#-friendly.

[!WARNING] This is not an official Tusk library. Use at your own risk. This library is subject to change and breaking changes may occur. Please open an issue if you find a bug.

This C# SDK is automatically generated by the OpenAPI Generator project:

  • API version: 1.0
  • SDK version: 1.0.0
  • Generator version: 7.8.0
  • Build package: org.openapitools.codegen.languages.CSharpClientCodegen

<a id="frameworks-supported"></a>

Frameworks supported

  • .NET 7.0
  • .NET 8.0

<a id="dependencies"></a>

Dependencies

The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:

Install-Package System.Text.Json
Install-Package Microsoft.Extensions.DependencyInjection
Install-Package Microsoft.Extensions.Options
Install-Package Microsoft.Extensions.Http

<a id="installation"></a>

Installation

Run the following command to generate the DLL

  • [Mac/Linux] /bin/sh build.sh
  • [Windows] build.bat

Then include the DLL (under the bin folder) in the C# project, and use the namespaces:

using Tusk.Api;
using Tusk.Client;
using Tusk.Model;

<a id="packaging"></a>

Packaging

A .nuspec is included with the project. You can follow the Nuget quickstart to create and publish packages.

This .nuspec uses placeholders from the .csproj, so build the .csproj directly:

nuget pack -Build -OutputDirectory out Tusk.csproj

Then, publish to a local feed or other host and consume the new package via Nuget as usual.

<a id="usage"></a>

Usage

To use the API client with a HTTP proxy, setup a System.Net.WebProxy

Configuration c = new Configuration();
System.Net.WebProxy webProxy = new System.Net.WebProxy("http://myProxyUrl:80/");
webProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
c.Proxy = webProxy;

Connections

Each ApiClass (properly the ApiClient inside it) will create an instance of HttpClient. It will use that for the entire lifecycle and dispose it when called the Dispose method.

To better manager the connections it's a common practice to reuse the HttpClient and HttpClientHandler (see here for details). To use your own HttpClient instance just pass it to the ApiClass constructor.

HttpClientHandler yourHandler = new HttpClientHandler();
HttpClient yourHttpClient = new HttpClient(yourHandler);
var api = new YourApiClass(yourHttpClient, yourHandler);

If you want to use an HttpClient and don't have access to the handler, for example in a DI context in Asp.net Core when using IHttpClientFactory.

HttpClient yourHttpClient = new HttpClient();
var api = new YourApiClass(yourHttpClient);

You'll loose some configuration settings, the features affected are: Setting and Retrieving Cookies, Client Certificates, Proxy settings. You need to either manually handle those in your setup of the HttpClient or they won't be available.

Here an example of DI setup in a sample web project:

services.AddHttpClient<YourApiClass>(httpClient =>
   new PetApi(httpClient));

<a id="getting-started"></a>

Getting Started

using System.Collections.Generic;
using System.Diagnostics;
using System.Net.Http;
using Tusk.Api;
using Tusk.Client;
using Tusk.Model;

namespace Example
{
    public class Example
    {
        public static void Main()
        {

            Configuration config = new Configuration();
            config.BasePath = "https://apisandbox.tusklogistics.com";
            // Configure API key authorization: ApiKeyAuth
            config.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // config.ApiKeyPrefix.Add("x-api-key", "Bearer");

            // create instances of HttpClient, HttpClientHandler to be reused later with different Api classes
            HttpClient httpClient = new HttpClient();
            HttpClientHandler httpClientHandler = new HttpClientHandler();
            var apiInstance = new LabelsApi(httpClient, config, httpClientHandler);
            var labelId = 56;  // int | ID of Label to return

            try
            {
                // Get a Label by ID
                Label result = apiInstance.GetaLabelbyID(labelId);
                Debug.WriteLine(result);
            }
            catch (ApiException e)
            {
                Debug.Print("Exception when calling LabelsApi.GetaLabelbyID: " + e.Message );
                Debug.Print("Status Code: "+ e.ErrorCode);
                Debug.Print(e.StackTrace);
            }

        }
    }
}

Instantiating the TuskClient

The Tusk Client Library provides two main ways to instantiate the TuskClient: using dependency injection (DI) or manual instantiation.

Dependency Injection is the recommended approach for most applications, especially those using ASP.NET Core or other DI-friendly frameworks.

  1. In your Startup.cs or wherever you configure your services, add the following:
using Tusk.Client;
public void ConfigureServices(IServiceCollection services)
{
    services.AddTuskClient(options =>
    {
        options.BaseUrl = "https://api.tusklogistics.com"; // Optional: Defaults to Tusk API URL
        options.ApiKey = "your-api-key-here";
        options.MaxRetries = 3; // Optional: Default is 3
        options.RetryDelay = TimeSpan.FromSeconds(1); // Optional: Default is 2 seconds
    }, useRetryHandler: true);
    // ... other service configurations
}
  1. Then, you can inject TuskClient into your classes:
public class YourService
{
    private readonly TuskClient _tuskClient;

    public YourService(TuskClient tuskClient)
    {
        _tuskClient = tuskClient;
    }

    public async Task<Label> GetLabelById(int labelId)
    {
        return await _tuskClient.LabelsApi.GetaLabelbyID(labelId);
    }
}

Manual Instantiation

For scenarios where you're not using a DI container, you can manually create an instance of TuskClient using the Create method:

using Tusk.Client;
var tuskClient = Helpers.Create(options =>
{
    options.BaseUrl = "https://api.tusklogistics.com"; // Optional: Defaults to Tusk API URL
    options.ApiKey = "your-api-key-here";
    options.MaxRetries = 3; // Optional: Default is 3
options.RetryDelay = TimeSpan.FromSeconds(1); // Optional: Default is 2 seconds
}, useRetryHandler: true);
// Use the client
var result = await tuskClient.LabelsApi.GetLabelAsync("label_id");

Remember to dispose of the TuskClient when you're done with it if you're not using DI:

tuskClient.Dispose();

Notes

  • The useRetryHandler parameter (default: false) enables automatic retrying of failed requests. When true, it uses the MaxRetries and RetryDelay settings from the options.
  • Always keep your API key secure and never hard-code it in your source files. Use environment variables or secure configuration management for production environments.
  • The TuskClient is thread-safe and designed to be used as a singleton. In DI scenarios, it's registered with a scoped lifetime by default.

<a id="documentation-for-api-endpoints"></a>

Documentation for API Endpoints

All URIs are relative to https://apisandbox.tusklogistics.com

Class Method HTTP request Description
LabelsApi GetaLabelbyID GET /v1/label/{label_id} Get a Label by ID
LabelsApi PurchaseLabels POST /v1/labels Purchase Labels
LabelsApi VoidaLabel POST /v1/label/{label_id}/void Void a Label
LocationsApi GetallshipfromLocations GET /v1/location Get all ship from Locations
ManifestApi AddLabelstoManifest POST /v1/manifest/{manifest_id}/addlabels Add Labels to Manifest
ManifestApi CreateaManifest POST /v1/manifest/create Create a Manifest
ManifestApi GetaManifestbyID GET /v1/manifest/{manifest_id} Get a Manifest by ID
ManifestApi RemoveLabelsfromManifest POST /v1/manifest/{manifest_id}/removelabels Remove Labels from Manifest
RatesApi CheckRates POST /v1/rate/check Check Rates
ShipmentsApi GetaShipmentbyID GET /v1/shipment/{shipment_id} Get a Shipment by ID
TrackingApi GetLabelTrackingHistory GET /v1/tracking/label/{label_id}/history Get Label Tracking History
TrackingApi GetLabelTrackingStatus GET /v1/tracking/label/{label_id} Get Label Tracking Status
TrackingApi GetShipmentTracking GET /v1/tracking/{tracking_number} Get Shipment Tracking

<a id="documentation-for-models"></a>

Documentation for Models

<a id="documentation-for-authorization"></a>

Documentation for Authorization

Authentication schemes defined for the API: <a id="ApiKeyAuth"></a>

ApiKeyAuth

  • Type: API key
  • API key parameter name: x-api-key
  • Location: HTTP header
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
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.2 6 10/1/2024
1.0.1.1 14 10/1/2024
1.0.1 24 10/1/2024
1.0.0 18 10/1/2024

Minor update