Cardknox.API.Wrapper
4.5.2
.NET Standard 2.0
.NET Framework 4.5
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
Install-Package Cardknox.API.Wrapper -Version 4.5.2
dotnet add package Cardknox.API.Wrapper --version 4.5.2
<PackageReference Include="Cardknox.API.Wrapper" Version="4.5.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cardknox.API.Wrapper --version 4.5.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Cardknox.API.Wrapper, 4.5.2"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package.
// Install Cardknox.API.Wrapper as a Cake Addin
#addin nuget:?package=Cardknox.API.Wrapper&version=4.5.2
// Install Cardknox.API.Wrapper as a Cake Tool
#tool nuget:?package=Cardknox.API.Wrapper&version=4.5.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Quick Start - Charge a Credit Card (Sale)
Note: You may either pass a CardNum
with a CVV
and an expiration date OR pass a Token
OR pass the raw card data (as MagStripe
). The API will not accept multiple.
The order of preference for the API wrapper:
- Card Number, Expiration Date, CVV (optional)
- Token
- Mag Stripe.
using CardknoxApi;
using CardknoxApi.Operations;
CCSale save = new CCSale
{
CardNum = "4444333322221111",
CVV = "123", // optional, requirement determined by software security settings
Exp = "1222" // Expiration Date: MMyy
};
Cardknox c = new Cardknox(new CardknoxRequest("CardknoxKey", "SoftwareName", "SoftwareVersion"));
CardknoxResponse resp = c.CCSale(sale);
if (resp.HasError)
throw new Exception(resp.Error);
string transactionId = resp.RefNum; // Always returned regardless of outcome
StatusType status = resp.Status; // Approved, Declined, Error
ResultType result = resp.Result; // A, D, E
string cardNum = resp.MaskedCardNumber; // eg 4xxxxxxxxxxx1111
string token = resp.Token; // Token returned for use with future transaction.
CardType cardType = resp.CardType; // Visa, Discover, etc
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 2.0
- System.Configuration.ConfigurationManager (>= 4.5.0)
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 |
---|---|---|
5.0.0-beta.5 | 80 | 11/16/2021 |
5.0.0-beta.4 | 190 | 12/15/2020 |
5.0.0-beta.3 | 208 | 10/15/2020 |
5.0.0-beta.2 | 175 | 4/2/2020 |
5.0.0-beta.1 | 186 | 3/24/2020 |
4.6.2 | 582 | 6/25/2020 |
4.6.1 | 331 | 3/23/2020 |
4.6.0 | 306 | 3/5/2020 |
4.5.3 | 348 | 1/16/2020 |
4.5.2 | 667 | 1/30/2019 |
4.5.1 | 764 | 1/29/2019 |
4.5.0 | 516 | 11/7/2018 |
4.0.0 | 498 | 10/30/2018 |
3.1.1 | 506 | 10/29/2018 |
3.0.2-beta | 490 | 10/23/2018 |
3.0.1-beta | 455 | 10/22/2018 |
3.0.0 | 505 | 10/22/2018 |
2.0.0 | 551 | 10/3/2018 |
1.0.0 | 561 | 10/2/2018 |
0.1.3-beta | 462 | 9/29/2018 |
0.1.2-beta | 488 | 9/25/2018 |
0.1.1-beta | 476 | 9/24/2018 |
0.1.0-beta | 481 | 9/24/2018 |
Added xCurrency field