https://github.com/rmja/vibrantio.api
Vibrant.io Push to Pay .NET API Client
https://github.com/rmja/vibrantio.api
Last synced: 9 months ago
JSON representation
Vibrant.io Push to Pay .NET API Client
- Host: GitHub
- URL: https://github.com/rmja/vibrantio.api
- Owner: rmja
- Created: 2025-01-07T08:49:36.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-07T09:04:52.000Z (over 1 year ago)
- Last Synced: 2025-01-07T10:21:17.342Z (over 1 year ago)
- Language: C#
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vibrant.io API Client
.NET Client for the [Vibrant.io](https://vibrant.io) [Push to Pay API](https://pos.api.vibrant.app/docs).
## Nuget Packages
| Package name | Description | Badge |
|-----------------------------------|-------------------------------|-------|
| `VibrantIo.PosApi` | The Push to Pay API Client | [](https://www.nuget.org/packages/VibrantIo.PosApi) |
## Usage
Add the client to the DI service container:
```C#
services.AddVibrantPosApi(options => {
options.Sandbox = false;
options.ApiKey = "...";
});
```
Then obtain a `IVibrantPosApiClient` to interact with the api.