An open API service indexing awesome lists of open source software.

https://github.com/panoramicdata/entuity.api


https://github.com/panoramicdata/entuity.api

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Entuity.Api

Support for the REST API as documented here:
https://support.entuity.com/hc/en-us/sections/360004560094-Entuity-RESTful-API

## Example Usage
``` C#
var entuityClient = new EntuityClient(new EntuityClientOptions
{
Url = "https://entuity.example.com/",
Username = "username",
Password = "xxxxxxxx",
UserAgent = "MyApp",
Logger = s.GetRequiredService>()
});

var result = await client
.Inventory
.GetAllAsync(default);
```