Skip to content

holydk/apiship-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C# ApiShip SDK

Getting started

  • Install from Nuget
Install-Package Bambins.ApiShip
  • Create ApiShipClient
var api = new ApiShipClient();

If you have access token

var api = new ApiShipClient("your_access_token");

If you want to use your own HTTP client

// create and configure HTTP client or resolve from DI
var httpClient = new HttpClient();
var api = new ApiShipClient("your_access_token", httpClient);