Skip to content

BloodShadow174/AnyPay.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

.NET Client for AnyPay

package downloads contributors license

AnyPay is a payment system that allows you to accept payments using the API.

This .NET library will help you work with AnyPay through the AnyPay API.

Install

Use the nuget package.

Usage

var anyPayClient = new AnyPayClient(
    "YOUR_API_ID",
    "YOUR_API_KEY",
    "YOUR_SECRET_KEY",
    12345 //Your project id
);

var myBalance = await anyPayClient.GetBalanceAsync(cancellationToken);

Tests

There are no tests in the project, if you want to help write them, then send a pull request.