Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.8 KB

File metadata and controls

51 lines (31 loc) · 1.8 KB

InvoiceXpress API Client

API Client for InvoiceXpress API

Package Build Status Nuget
InvoiceXpress.ApiClient Build status NuGet NuGet
InvoiceXpress.ApiClient.ASpNetCore Build status NuGet NuGet

Usage

IHttpClientFactory Patern

var apiKey = "<api-key>";
var apiUrl = "https://<api-url>";

services.AddInvoiceXpressClient(options =>
{
    options.ApiKey = apiKey;
    options.ApiBaseUrl = apiUrl;
});

Client Factory

var apiKey = "<api-key>";
var apiUrl = "https://<api-url>";

var invoiceClient = InvoiceXpressClientFactory.Create(apiUrl, apiKey, logger);

Development


Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT