Chimoney SDK for .NET. It is a library that allows you to easily integrate Chimoney into your .NET applications.
License
—
Deps
0
Install Size
—
Vulns
✓ 0
Published
Dec 9, 2023
$ dotnet add package ChimoneyDotNetThis is the Chimoney SDK for .NET. It is a library that allows you to easily integrate Chimoney into your .NET applications.
In your .NET project, run the following command in the terminal:
dotnet add package ChimoneyDotNet --version 1.0.2
using ChimoneyDotNet;
var chimoney = new Chimoney("your_api_key");
// Get supported banks
var banks = chimoney.GetSupportedBanks();
//Make an account transfer
using ChimoneyDotNet.Models;
var account = new AccountTransfer()
{
ChiRef = "1234567890",
ReceiverId = "1234567890",
ValueInUSD = 100,
WalletType = "NGN",
}
var transfer = chimoney.AccountTransfer(account);