eWAY.Rapid 1.6.1

There is a newer version of this package available.
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
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="eWAY.Rapid" Version="1.6.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add eWAY.Rapid --version 1.6.1
#r "nuget: eWAY.Rapid, 1.6.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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

Latest version on NuGet Software License Build Status

A .NET library to integrate with eWAY's Rapid Payment API.

Sign up with eWAY at:

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.

  1. In Visual Studio, open the NuGet Package Manager
  2. Using the Search box, search for "eWAY"
  3. Click "Install" and select the projects you'd like the eWAY package to be available for
  4. NuGet will download the eWAY library & dependencies
  5. 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 30,538 5/13/2021
1.6.2 54,157 6/11/2019
1.6.1 42,592 1/5/2018
1.6.0 5,159 11/22/2017
1.6.0-beta1 1,914 11/17/2016
1.5.3 33,072 4/20/2017
1.5.2 5,993 2/16/2017
1.5.1 1,506 2/9/2017
1.5.0 5,695 10/19/2016
1.4.0 3,663 6/9/2016
1.3.0 1,893 2/25/2016
1.2.1 1,116 2/17/2016
1.2.0 7,043 12/1/2015
1.1.3 6,970 10/14/2015
1.1.2 1,152 10/12/2015
1.1.1 1,680 10/2/2015
1.1.0 1,174 9/30/2015
1.0.1 1,447 9/14/2015
1.0.0 1,119 8/26/2015