PaymentGatewayClient 0.0.7

dotnet add package PaymentGatewayClient --version 0.0.7
NuGet\Install-Package PaymentGatewayClient -Version 0.0.7
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="PaymentGatewayClient" Version="0.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PaymentGatewayClient --version 0.0.7
#r "nuget: PaymentGatewayClient, 0.0.7"
#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 PaymentGatewayClient as a Cake Addin
#addin nuget:?package=PaymentGatewayClient&version=0.0.7

// Install PaymentGatewayClient as a Cake Tool
#tool nuget:?package=PaymentGatewayClient&version=0.0.7

Payment Gateway Client

nuget

There are several "smaller" merchant payment gateways that all use the same API system. This client is meant to work with all of them. Below is a list of known providers that use this system.

Original documentation: https://integratepayments.transactiongateway.com/merchants/resources/integration/integration_portal.php

https://www.integratepayments.com/payment-gateway/integrate-payments-query-api

http://status.transactiongateway.com/

Known Providers

Note: This is not an indication of endorsement and there is no guarantee of compatibility. With the exception of NMI, these providers have not been tested. Based on current experience, it may be possible to use any of these (and new) providers using the NMI API endpoint though this use case has not been tested.

If you find another gateway that uses this system, please file an issue to get this list updated.

Usage

Credit/Debit Cards

            var securityKey = "6457Thfj624V5r7WUwc5v6a68Zsd6YEm"; // test account
            var client = new GatewayClient(securityKey, GatewayProvider.NMI);
            Sale sale = new Sale
            {
                CardNumber = "4111111111111111",
                CardExpiration = "0323",
                CVV = "999",
                Amount = "5.00",
                FirstName = "John",
                LastName = "Smith",
                Address1 = "1234 Main St.",
                City = "Chicago",
                State = "IL",
                Zip = "60193",
                Payment = "creditcard"
            };

            var result = client.Sale(sale);

ACH/eCheck

            var securityKey = "6457Thfj624V5r7WUwc5v6a68Zsd6YEm"; // test account
            var client = new GatewayClient(securityKey, GatewayProvider.NMI);
            Sale sale = new Sale
            {
                CheckABA = "123123123",
                CheckAccount = "123123123",
                CheckName = "John Smith",
                StandardEntryClass = "WEB",
                Amount = "5.00",
                FirstName = "John",
                LastName = "Smith",
                Address1 = "1234 Main St.",
                City = "Chicago",
                State = "IL",
                Zip = "60193",
                Payment = "check",
                AccountHolderType = "business",
                AccountType = "checking"
            };

            var result = client.Sale(sale);

Response

public class GatewayResponse {
    public readonly GatewayResponseCode Response; // Approved, Declined, Error
    public readonly string ResponseText;
    public readonly ReadOnlyDictionary<string, string> Data;
}

Web hook Validation

.NET Framework
ctx = HttpContext.Current;
// generate/retrieve signing key from gateway portal
string key = "WEBHOOK SIGNING KEY";
string signature = ctx.Request.Headers["webhook-Signature"];
string reqBody = "";
try
{
    using (StreamReader sr = new StreamReader(ctx.Request.InputStream))
        reqBody = await sr.ReadToEndAsync();
}
catch { }
WriteLog($"------{DateTime.UtcNow:R}---------------");
WriteLog(signature);
WriteLog(reqBody);

var status = WebhookParser.ParseWebhookData(reqBody, key, signature);
if (!status.IsValid)
{
    WriteLog($"------{DateTime.UtcNow:R}---------------");
    WriteLog("Webhook validation failed!");
    return;
}
// process status.Data
.NET Core / .NET 5+
// generate/retrieve signing key from gateway portal
string key = "WEBHOOK SIGNING KEY";
string signature = Request.Headers["webhook-Signature"];
string reqBody = "";
try
{
    using (StreamReader sr = new StreamReader(Request.Body))
        reqBody = await sr.ReadToEndAsync();
}
catch { }
WriteLog($"------{DateTime.UtcNow:R}---------------");
WriteLog(signature);
WriteLog(reqBody);

var status = WebhookParser.ParseWebhookData(reqBody, key, signature);
if (!status.IsValid)
{
    WriteLog($"------{DateTime.UtcNow:R}---------------");
    WriteLog("Webhook validation failed!");
    return;
}
// process status.Data
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.7 172 7/24/2023
0.0.6 136 7/13/2023
0.0.5 135 5/26/2023
0.0.4 128 5/25/2023
0.0.3 142 4/26/2023
0.0.2 154 4/11/2023
0.0.1 256 4/25/2022

updated webhook response