An open API service indexing awesome lists of open source software.

https://github.com/cloudipsp/csharp-sdk

Fondy C# SDK
https://github.com/cloudipsp/csharp-sdk

csharp fondy payment payment-gateway payment-integration sdk

Last synced: 3 months ago
JSON representation

Fondy C# SDK

Awesome Lists containing this project

README

        

# IPSP C# SDK (beta)







## Payment service provider
A payment service provider (PSP) offers shops online services for accepting electronic payments by a variety of payment methods including credit card, bank-based payments such as direct debit, bank transfer, and real-time bank transfer based on online banking. Typically, they use a software as a service model and form a single payment gateway for their clients (merchants) to multiple payment methods.
[read more](https://en.wikipedia.org/wiki/Payment_service_provider)

## Installation

SDK availble on [NuGet](https://www.nuget.org/packages/CloudIpspSDK/).

## Requirements

Fondy account - [Register here](https://portal.fondy.eu/mportal/#/account/registration)

Newtonsoft.json (JSON.NET)

## Simple Start
```csharp
using CloudIpspSDK;
using CloudIpspSDK.Checkout;

Config.MerchantId = 1396424;
Config.SecretKey = "test";

var req = new CheckoutRequest {
order_id = Guid.NewGuid().ToString("N"),
amount = 100000,
order_desc = "checkout json demo",
currency = "EUR"
};
var resp = new Url().Post(req);
if (resp.Error == null) {
string url = resp.checkout_url;
}
```
# Api

See [docs](https://docs.fondy.eu/)
## Examples
To check it you can use build-in ISS server
[http://localhost:7777/](http://localhost:7777/)