https://github.com/panoramicdata/entuity.api
https://github.com/panoramicdata/entuity.api
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/panoramicdata/entuity.api
- Owner: panoramicdata
- License: mit
- Created: 2024-07-24T13:32:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-26T11:57:15.000Z (about 1 year ago)
- Last Synced: 2025-03-26T12:29:08.915Z (about 1 year ago)
- Language: C#
- Size: 303 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```