FirstData.Gateway
1.0.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package FirstData.Gateway --version 1.0.0
NuGet\Install-Package FirstData.Gateway -Version 1.0.0
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="FirstData.Gateway" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FirstData.Gateway" Version="1.0.0" />
<PackageReference Include="FirstData.Gateway" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FirstData.Gateway --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FirstData.Gateway, 1.0.0"
#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.
#:package FirstData.Gateway@1.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FirstData.Gateway&version=1.0.0
#tool nuget:?package=FirstData.Gateway&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FirstApiClient C# library
Frameworks supported
- .NET 2.0
Dependencies
- Mono compiler
- Newtonsoft.Json.7.0.1
- RestSharp.Net2.1.1.11
Installation
Install Via NuGet
-OR-
Local
Run the following command to generate the DLL
- [Mac/Linux]
/bin/sh compile-mono.sh - [Windows] TODO
Include the DLL (under the bin folder) in the C# project
Use the namespaces:
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
using IO.Simple;
Getting Started
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
using IO.Simple;
namespace Example
{
public class Example
{
public void main()
{
string apiKey = "Your API Key Here";
string apiSecret = "Your API Secret Here";
MerchantCredentials credentials = new MerchantCredentials(apiKey, apiSecret);
Gateway gateway = Gateway.create(credentials);
PaymentMethod pMethod = new PaymentMethod();
Expiration expiryDate = new Expiration();
PaymentCard card = new PaymentCard();
expiryDate.Month = "12";
expiryDate.Year = "25";
card.ExpiryDate = expiryDate;
card.Number = "4111111111111111";
pMethod.PaymentCard = card;
pMethod.Type = transaction_params.payload.paymentMethod.type;
PrimaryTransaction trans = new PrimaryTransaction
{
Amount = GetAmount(),
StoreId = StoreId(),
PaymentMethod = pMethod,
TransactionType = transaction_params.payload.transactionType
};
ApiResponse response = gateway.PrimaryPaymentTransaction(
payload
);
Console.WriteLine(response.JsonData);
}
}
}
Documentation for API Endpoints
All URIs are relative to https://cert.api.firstdata.com/gateway
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AuthenticationApi | V1AuthenticationAccessTokensPost | POST /v1/authentication/access-tokens | Generate an access token for user authentication |
| OrderApi | PerformPaymentPostAuthorisation | POST /v1/orders/{order-id}/postauth | Use this to capture/complete a transaction. Partial postauths are allowed. |
| OrderApi | ReturnTransaction | POST /v1/orders/{order-id}/return | Use this to return/refund on the order. Partial returns are allowed. |
| PaymentApi | PerformPaymentPostAuthorisation | POST /v1/payments/{transaction-id}/postauth | Use this to capture/complete a transaction. Partial postauths are allowed. |
| PaymentApi | PrimaryPaymentTransaction | POST /v1/payments | Generate a primary transaction |
| PaymentApi | ReturnTransaction | POST /v1/payments/{transaction-id}/return | Return/refund a transaction. |
| PaymentApi | TransactionInquiry | GET /v1/payments/{transaction-id} | Retrieve the state of a transaction |
| PaymentApi | VoidTransaction | POST /v1/payments/{transaction-id}/void | Reverse a previous action on an existing transaction |
Documentation for Models
- IO.Swagger.Model.AccessTokenResponse
- IO.Swagger.Model.Address
- IO.Swagger.Model.Airline
- IO.Swagger.Model.AirlineAncillaryServiceCategory
- IO.Swagger.Model.AirlineTravelRoute
- IO.Swagger.Model.Amount
- IO.Swagger.Model.AmountComponents
- IO.Swagger.Model.AuthenticationResponseVerification
- IO.Swagger.Model.BasketItem
- IO.Swagger.Model.Billing
- IO.Swagger.Model.CarRental
- IO.Swagger.Model.CarRentalExtraCharges
- IO.Swagger.Model.CardVerificationsTransaction
- IO.Swagger.Model.ClientLocale
- IO.Swagger.Model.Contact
- IO.Swagger.Model.Error
- IO.Swagger.Model.ErrorDetails
- IO.Swagger.Model.ErrorResponse
- IO.Swagger.Model.Expiration
- IO.Swagger.Model.Frequency
- IO.Swagger.Model.IndustrySpecificExtensions
- IO.Swagger.Model.InstallmentOptions
- IO.Swagger.Model.Lodging
- IO.Swagger.Model.LodgingExtraCharges
- IO.Swagger.Model.Order
- IO.Swagger.Model.PayPal
- IO.Swagger.Model.PaymentCard
- IO.Swagger.Model.PaymentCardAuthenticationRequest
- IO.Swagger.Model.PaymentCardAuthenticationResult
- IO.Swagger.Model.PaymentMethod
- IO.Swagger.Model.PaymentSchedulesRequest
- IO.Swagger.Model.PaymentSchedulesResponse
- IO.Swagger.Model.PaymentUrlRequest
- IO.Swagger.Model.PaymentUrlResponse
- IO.Swagger.Model.PrimaryTransaction
- IO.Swagger.Model.PrimaryTransactionAdditionalDetails
- IO.Swagger.Model.ProcessorData
- IO.Swagger.Model.ResponseType
- IO.Swagger.Model.SecondaryTransaction
- IO.Swagger.Model.Sepa
- IO.Swagger.Model.SepaMandate
- IO.Swagger.Model.Shipping
- IO.Swagger.Model.SplitShipment
- IO.Swagger.Model.StoredCredential
- IO.Swagger.Model.TransactionResponse
- IO.Swagger.Model.TransactionResponseAuthenticationRedirect
- IO.Swagger.Model.TransactionResponseAuthenticationRedirectParams
- IO.Swagger.Model.TransactionType
- IO.Swagger.Model.TransactionErrorResponse
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
- Newtonsoft.Json (>= 11.0.2)
- RestSharp.Net2 (>= 1.1.11)
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 |
|---|---|---|
| 1.14.0 | 38,137 | 11/19/2021 |
| 1.13.0 | 1,649 | 9/17/2021 |
| 1.12.0 | 566 | 6/30/2021 |
| 1.11.1 | 523 | 5/11/2021 |
| 1.11.0 | 701 | 4/26/2021 |
| 1.10.0 | 2,683 | 2/17/2021 |
| 1.9.0 | 855 | 11/12/2020 |
| 1.8.0 | 722 | 9/11/2020 |
| 1.7.1 | 672 | 8/20/2020 |
| 1.7.0 | 805 | 7/10/2020 |
| 1.6.0 | 1,778 | 5/12/2020 |
| 1.5.0 | 738 | 2/11/2020 |
| 1.4.2 | 1,386 | 10/22/2019 |
| 1.4.1 | 745 | 10/17/2019 |
| 1.4.0 | 717 | 10/7/2019 |
| 1.3.0 | 814 | 8/6/2019 |
| 1.2.0 | 6,001 | 6/18/2019 |
| 1.1.0 | 809 | 3/22/2019 |
| 1.0.0 | 975 | 10/25/2018 |
Initial release.