Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 537 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 537 Bytes

Nuget

Veja essa documentação em: Português

Omie.Api.Client

Omie api .net client library

Getting started

PM> Install-Package Omie.Api.Client

Building api client

var options = new OmieApiClientOptions { Token = "your-omie-token", ApplicationId = "your-omie-application-id" };
var client = new OmieClient(options);

Getting Customers

...
var customers = await client.Customers.GetManyAsync(limit:50, currentPage:1);