eWAY.Rapid
1.6.1
See the version list below for details.
dotnet add package eWAY.Rapid --version 1.6.1
NuGet\Install-Package eWAY.Rapid -Version 1.6.1
<PackageReference Include="eWAY.Rapid" Version="1.6.1" />
paket add eWAY.Rapid --version 1.6.1
#r "nuget: eWAY.Rapid, 1.6.1"
// Install eWAY.Rapid as a Cake Addin #addin nuget:?package=eWAY.Rapid&version=1.6.1 // Install eWAY.Rapid as a Cake Tool #tool nuget:?package=eWAY.Rapid&version=1.6.1
eWAY Rapid .NET Library
A .NET library to integrate with eWAY's Rapid Payment API.
Sign up with eWAY at:
- Australia: https://www.eway.com.au/
- New Zealand: https://eway.io/nz/
- Hong Kong: https://eway.io/hk/
- Malaysia: https://eway.io/my/
- Singapore: https://eway.io/sg/
For testing, get a free eWAY Partner account: https://www.eway.com.au/developers
Install
Install with NuGet
The eWAY Rapid .NET library can be easily added to your project with NuGet. Versions 4.5 or above of .NET are supported at this time.
- In Visual Studio, open the NuGet Package Manager
- Using the Search box, search for "eWAY"
- Click "Install" and select the projects you'd like the eWAY package to be available for
- NuGet will download the eWAY library & dependencies
- You are set to use eWAY in your project!
Usage
See the eWAY Rapid API Reference for usage details.
A simple Direct payment example:
using eWAY.Rapid;
using eWAY.Rapid.Enums;
using eWAY.Rapid.Models;
string APIKEY = "Rapid API Key";
string PASSWORD = "Rapid API Password";
string ENDPOINT = "Sandbox";
IRapidClient ewayClient = RapidClientFactory.NewRapidClient(APIKEY, PASSWORD, ENDPOINT);
Transaction transaction = new Transaction(){
Customer = new Customer() {
CardDetails = new CardDetails()
{
Name = "John Smith",
Number = "4444333322221111",
ExpiryMonth = "11",
ExpiryYear = "22",
CVN = "123"
}
},
PaymentDetails = new PaymentDetails()
{
TotalAmount = 1000
},
TransactionType = TransactionTypes.Purchase
};
CreateTransactionResponse response = ewayClient.Create(PaymentMethod.Direct, transaction);
if (response.TransactionStatus != null && response.TransactionStatus.Status == true)
{
int transactionID = response.TransactionStatus.TransactionID;
}
Change log
Please see CHANGELOG for more information what has changed recently.
License
The MIT License (MIT). Please see License File for more information.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- AutoMapper (>= 6.2.2)
- Newtonsoft.Json (>= 10.0.3)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on eWAY.Rapid:
Package | Downloads |
---|---|
Jaba.J6.Ecm
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.6.3 | 41,196 | 5/13/2021 |
1.6.2 | 61,029 | 6/11/2019 |
1.6.1 | 43,244 | 1/5/2018 |
1.6.0 | 5,650 | 11/22/2017 |
1.6.0-beta1 | 2,054 | 11/17/2016 |
1.5.3 | 55,055 | 4/20/2017 |
1.5.2 | 7,906 | 2/16/2017 |
1.5.1 | 1,657 | 2/9/2017 |
1.5.0 | 6,526 | 10/19/2016 |
1.4.0 | 4,223 | 6/9/2016 |
1.3.0 | 2,040 | 2/25/2016 |
1.2.1 | 1,231 | 2/17/2016 |
1.2.0 | 7,382 | 12/1/2015 |
1.1.3 | 23,382 | 10/14/2015 |
1.1.2 | 1,281 | 10/12/2015 |
1.1.1 | 1,812 | 10/2/2015 |
1.1.0 | 1,310 | 9/30/2015 |
1.0.1 | 1,641 | 9/14/2015 |
1.0.0 | 1,275 | 8/26/2015 |