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
- Host: GitHub
- URL: https://github.com/cloudipsp/csharp-sdk
- Owner: cloudipsp
- License: gpl-3.0
- Created: 2019-10-18T12:23:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-11-29T16:57:30.000Z (over 1 year ago)
- Last Synced: 2025-01-19T21:55:12.362Z (5 months ago)
- Topics: csharp, fondy, payment, payment-gateway, payment-integration, sdk
- Language: C#
- Homepage:
- Size: 130 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
}
```
# ApiSee [docs](https://docs.fondy.eu/)
## Examples
To check it you can use build-in ISS server
[http://localhost:7777/](http://localhost:7777/)