Skip to content

asebak/AtomicPay.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AtomicPay.NET

AtomicPay.NET C# SDK enables you to easily interact with your AtomicPay account in your .NET project.

AtomicPay.Net C# SDK is a .NetStandard 2.0 library. This makes it usable in a broad range of project types, like WPF, UWP, Xamarin and more.

Getting Started

Almost all API calls need to be authenticated. The SDK uses a Config singleton class to make the authentication process as easy as possible, while providing you to possibility to secure your credentials specific to your platform. To initialize the SDK with your credentials, you just need to initialize the Config class:

await AtomicPay.Config.Current.Init("YOURACCOUNTID", "YOURACCOUNTPUBLICKEY", "YOURACCOUNTPRIVATEKEY");

This will not only initialize the Config, but also verify that you are passing valid credentials. All API calls ask Config.Current for credentials internally and throw an Exception if they are missing.

After initializing Config.Current, your application is already set up to use AtomicPayClient. As AtomicPayClient implements IDisposable, the easiest way to use the client is:

using (var client = new AtomicPayClient())
{
	//read on to see more
}

If you prefer a static instance however, just create a static member in your class that uses the SDK and create a new instance of the client.

Generic response and request types

The SDK uses generic wrappers around the repsonses from the API. These wrappers are repsonsible for (de-)serialization of the json responses/requests. There are two types:

All methods return an AtomicPayResponse object that holds a deserialized representation of the specific entity. If an API call returns an error, the response indicates that there is an error and the error message returned from the API. The AtomicPayRequest object wraps the request (for API calls that have a body) objects and serializes them on demand.

Available API calls

Account (API docs)

Get Account info (returns AccountInfo):

using (var client = new AtomicPayClient())
{
    var account = await client.GetAccountAsync();
}

Update Account info (takes AccountUpdateInfo, returns AccountInfo):

using (var client = new AtomicPayClient())
{
   var accUpdate = new AccountUpdateInfo(
      "AccountName",
      "https://msiccdev.net",
      "account@mail.com",
      "USD",
      "BTC",
      TransactionSpeed.High,
      "https://account.notification.url.com");

   var request = new AtomicPayRequest<AccountUpdateInfo>(accUpdate);
   var updatedAccount = await client.UpdateAccountAsync(request);
}

Billing (API docs)

Get all bills (returns BillingList<BillInfo>):

using (var client = new AtomicPayClient())
{
   var today = new DateTimeOffset(DateTime.Now);
   var last60 = new DateTimeOffset(DateTime.Now.Subtract(TimeSpan.FromDays(30)));

   var bills = await _client.GetBillsAsync(last60, today, BillingStatus.All);
}

Get specific bill (returns BillingList<BillInfoDetails>, single entry):

using (var client = new AtomicPayClient())
{
   var bill = await client.GetBillByIdAsync("abc123");
}

Currencies (API docs)

Get all currencies [returns Currencies with a List<CurrencyInfo>):

using (var client = new AtomicPayClient())
{
   var allCurrencies = await client.GetCurrenciesAsync();
}

Get specific currency [returns Currencies with a List<CurrencyInfo>, single entry):

using (var client = new AtomicPayClient())
{
   var currency = await client.GetCurrencyByNameAsync("USD");
}

Invoices (API docs)

Get Invoices, filtered by time frame and status (returns InvoicesList<InvoiceInfo>)

using (var client = new AtomicPayClient())
{
   var today = new DateTimeOffset(DateTime.Today);
   var last30 = new DateTimeOffset(DateTime.Today.Subtract(TimeSpan.FromDays(30)));

   var invoices = await client.GetInvoicesAsync(last30, today, InvoiceStatus.All);
}

Get specifc invoice by id (returns InvoicesList<InvoiceInfoDetails>)

using (var client = new AtomicPayClient())
{
   var invoice = await client.GetInvoiceByIdAsync("123456");
}

Create a new invoice (takes InvoiceCreationInfo, returns NewInvoiceInfo)

using (var client = new AtomicPayClient())
{
   var request = new InvoiceCreationInfo
      (5,
       "USD",
       123456,
       "invoice for xy",
       TransactionSpeed.Medium,
       "customer@mail.com",
       null,
       null);
    var newInvoiceInfo = new AtomicPayRequest<InvoiceCreationInfo>(request);
    var createdInvoice = await client.CreateInvoiceAsync(newInvoiceInfo);
}

PayUrl (API docs)

Get all PayUrls, optionally filtered by status (returns PayUrlList<PayUrlInfo>)

using (var client = new AtomicPayClient())
{
   var payUrlsList = await client.GetPayUrlsAsync();
}

Get specific PayUrl by Id (returns PayUrlList<PayUrlInfoDetails>, single entry)

using (var client = new AtomicPayClient())
{
   var payUrlFull = await client.GetPayUrlByIdAsync("x123c34");
}

Create new PayUrl (takes PayUrlCreationInfo, returns UpdatedPayUrlInfo)

using (var client = new AtomicPayClient())
{
    var payUrlCreationInfo = new PayUrlCreationInfo("new payurl", "USD", TransactionSpeed.Low, PayUrlExpiry.ThirdyDays, DateTime.Now.Ticks, (decimal)1.49, "this is a new payurl", null, null, null);
    var request = new AtomicPayRequest<PayUrlUpdateInfo>(payUrlCreationInfo);

    var newPayUrl = await client.CreatePayUrlAsync(request);
}

Update PayUrl (takes PayUrlUpdateInfo, returns UpdatedPayUrlInfo)

using (var client = new AtomicPayClient())
{
    var payUrlUpdateInfo = new PayUrlUpdateInfo("updated payurl", "USD", TransactionSpeed.Low, PayUrlExpiry.ThirdyDays, DateTime.Now.Ticks, (decimal)1.49, "this is an updated pay url", null, null, null);
    var request = new AtomicPayRequest<PayUrlUpdateInfo>(payUrlCreationInfo);

    var updatedPayUrl = await client.UpdatePayUrlAsync("x123c34", request);
}

Delete PayUrl (returns PayUrlStatusInfo)

using (var client = new AtomicPayClient())
{
    var deleted = await client.DeletePayUrlAsync("x123c34");
}

Rates (API docs)

Get real time exchange rates for supported currencies [returns RateInfoList<RateInfo>):

using (var client = new AtomicPayClient())
{
   var rates = await client.GetRatesForCurrencyAsync("USD");
}

Transactions (API docs)

Get transactions, filtered by time frame and status (returns TransactionList<TransactionInfo>)

using (var client = new AtomicPayClient())
{
   var today = new DateTimeOffset(DateTime.Today);
   var last30 = new DateTimeOffset(DateTime.Today.Subtract(TimeSpan.FromDays(30)));

   var transactions = await client.GetTransactionsAsync(last30, today, TransactionStatus.All);
}

About

AtomicPay.NET C# SDK enables you to easily interact with your AtomicPay account in your .NET project.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages