MaxiPago 3.0.408

There is a newer version of this package available.
See the version list below for details.
dotnet add package MaxiPago --version 3.0.408
NuGet\Install-Package MaxiPago -Version 3.0.408
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="MaxiPago" Version="3.0.408" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MaxiPago --version 3.0.408
#r "nuget: MaxiPago, 3.0.408"
#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 MaxiPago as a Cake Addin
#addin nuget:?package=MaxiPago&version=3.0.408

// Install MaxiPago as a Cake Tool
#tool nuget:?package=MaxiPago&version=3.0.408

MaxiPago SDK client

The MaxiPago gateway SDK for .NET projects

GitHub license Time tracker

MaxiPago


CI/CD

Build status Last commit Tests Coverage Code Smells LoC
Build status GitHub last commit AppVeyor tests (branch) Coverage Code Smells Lines of Code

Code Quality

Codacy Badge Codacy Badge

codecov CodeFactor

Maintainability Test Coverage

Quality Gate Status Maintainability Rating

Technical Debt Duplicated Lines (%)

Reliability Rating Security Rating

Bugs Vulnerabilities


Installation

Github Releases

GitHub last release Github All Releases

Download the latest zip file from the Release page.

Nuget package manager

Package Version Downloads
MaxiPago MaxiPago NuGet Version MaxiPago NuGet Downloads

Features

Implements all features of MaxiPago API available at Integration Documentation

  • Add customer
  • Delete customer
  • Update customer
  • Add a card on file
  • Delete card on file
  • Cancel recurring
  • Sale (with card data)
  • Sale (with saved card)
  • Sale (with card data, saving the card for future use)
  • Auth (with card data)
  • Auth (with saved card)
  • Auth (with card data, saving the card for future use)
  • Boleto (bank slip/bank bill - Brazil only!)
  • Capture (capture a pre-auth request)
  • Return
  • Void
  • Recurring (with card data)
  • Recurring (with saved card)
  • Online Debit (Brazil only!)
  • Transactions report
  • Transaction detailed report
  • Transaction detailed report by order ID
  • Check request status

Usage

Adding a customer


//For each environment (TEST and LIVE) this information is different!
var merchantId = "your-merchant-id"; //get this information with MaxiPago
var merchantKey = "your-merchant-key"; //get this information with MaxiPago

var api = new Api { Environment = "TEST" }; //TEST or LIVE
var response = api.AddConsumer(
    MerchantId,
    MerchantKey,
    userIdInYourSystem,
    firstName,
    lastName,
    addressLineOne, //if you don't have this information, use null instead
    addressLineTwo, //if you don't have this information, use null instead
    city, //if you don't have this information, use null instead
    state, //if you don't have this information, use null instead
    zipCode, //if you don't have this information, use null instead
    phone, //if you don't have this information, use null instead
    email,
    dateOfBirth, //if you don't have this information, use null instead
    document,
    gender); //M for Male and F for Female

if(!string.IsNullOrWhiteSpace(response.ErrorMessage))
    //handle the error message.
return response.Result.CustomerId; //store this customer ID value for updating or deleting the customer in future.

Delete customer


//For each environment (TEST and LIVE) this information is different!
var merchantId = "your-merchant-id"; //get this information with MaxiPago
var merchantKey = "your-merchant-key"; //get this information with MaxiPago

var api = new Api { Environment = "TEST" }; //TEST or LIVE

var response = api.DeleteCustomer(merchantId, merchantKey, customerId); //this information was returned by the AddCustomer method.
if(!string.IsNullOrWhiteSpace(response.ErrorMessage))
    //handle the error message.

Update customer


//For each environment (TEST and LIVE) this information is different!
var merchantId = "your-merchant-id"; //get this information with MaxiPago
var merchantKey = "your-merchant-key"; //get this information with MaxiPago

var api = new Api { Environment = "TEST" }; //TEST or LIVE

var response = api.UpdatedCustomer(
    merchantId,
    merchantKey,
    customerId,
    userIdOnYourSystem,
    firstName,
    lastName,
    null,
    null,
    null,
    null,
    null,
    "+5511123456789", //updates the telephone
    email,
    null,
    null,
    "M");

if(!string.IsNullOrWhiteSpace(response.ErrorMessage))
    //handle the error message.

Save card


//For each environment (TEST and LIVE) this information is different!
var merchantId = "your-merchant-id"; //get this information with MaxiPago
var merchantKey = "your-merchant-key"; //get this information with MaxiPago

var api = new Api { Environment = "TEST" }; //TEST or LIVE

var response = api.AddCardOnFile(
    merchantId,
    merchantKey,
    customerId,
    creditCardNumber,
    expirationMonth,
    expirationYear,
    billingName,
    billingAddressLineOne,
    billingAddressLineTwo,
    billingCity,
    billingState,
    billingZip,
    billingCountry,
    billingPhone,
    billingEmail,
    onFileEndDate, //Deadline to keep the card in the base
    onFilePermission, //Limit duration for the use of the saved card. "ongoing" = indefinitely / "use_once" = only once after the 1st payment
    onFileComment,
    onFileMaxChargeAmount); //Maximum amount that this card is authorized to be charged.

if(!string.IsNullOrWhiteSpace(response.ErrorMessage))
    //handle the error message.
return response.Result.Token; //store this token for future use (remove card, sale, auth...)

Create a recurring payment


//For each environment (TEST and LIVE) this information is different!
var merchantId = "your-merchant-id"; //get this information with MaxiPago
var merchantKey = "your-merchant-key"; //get this information with MaxiPago

var transaction = new Transaction { Environment = "TEST" }; //TEST or LIVE

var response = transaction.Recurring(
        merchantId,
        merchantKey,
        transactionId,
        value,
        creditCardNumber,
        expirationMonth,
        expirationYear,
        null,
        creditCardSecureCode,
        processorId, //TEST SIMULATOR = 1 | Rede = 2 | GetNet = 3 | Cielo = 4 | TEF = 5 | Elavon = 6 | ChasePaymentech = 8 
        6, //installments
        "N", //charge interest
        ipAddress,
        "new",
        startDate, //the date of first charge
        frequency, //combined with period, so if the frequency is 1, every "period" will be charged. So if the period is "weekly" and the frequency is "2", every two weeks will be charged.
        period, //The charge recurring period: daily, weekly, monthly
        numberOfTimes, //The number of times to repeat the charge (use 999 as max value for "indefinitely" time, after 999 times, this recurring will need to be created again).
        failureThreshold, //Number of failed attempts needed to trigger an email notification to the merchant.
        "BRL"); //currency of the charge.

if(response.IsErrorResponse){
    if(response is ErrorResponse errorResult)
        Console.WriteLine(errorResult.ErrorMsg); //handle the error message.
}
if(!(response is TransactionResponse result))
    //some other error, handle it

var orderId = result.OrderId;
var responseCode = result.ResponseCode;
if(responseCode != 0) {
    Console.WriteLine(result.ErrorMessage); //handle it

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 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  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
3.0.454 67 4/30/2024
3.0.451 73 4/30/2024
3.0.444 73 4/29/2024
3.0.435 62 4/22/2024
3.0.432 67 4/22/2024
3.0.427 71 4/22/2024
3.0.422 83 4/15/2024
3.0.419 86 4/15/2024
3.0.414 82 4/8/2024
3.0.411 150 3/18/2024
3.0.408 170 2/26/2024
3.0.405 186 2/20/2024
3.0.401 200 2/19/2024
3.0.389 208 2/14/2024
3.0.386 187 2/14/2024
3.0.380 200 2/12/2024
3.0.377 188 2/12/2024
3.0.372 283 1/30/2024
3.0.369 240 1/29/2024
3.0.364 248 1/29/2024
3.0.356 263 1/22/2024
3.0.353 271 1/22/2024
3.0.350 275 1/22/2024
3.0.343 271 1/16/2024
3.0.340 279 1/16/2024
3.0.335 307 1/15/2024
3.0.328 303 1/8/2024
3.0.325 305 12/25/2023
3.0.322 284 12/25/2023
3.0.317 338 12/18/2023
3.0.297 358 12/14/2023
3.0.291 347 12/11/2023
3.0.288 342 12/11/2023
3.0.283 346 12/11/2023
3.0.280 372 12/11/2023
3.0.271 396 12/4/2023
3.0.268 398 12/4/2023
3.0.263 335 11/27/2023
3.0.260 317 11/20/2023
3.0.255 352 11/20/2023
3.0.250 347 11/20/2023
3.0.243 364 11/14/2023
3.0.238 366 11/14/2023
3.0.235 311 11/13/2023
3.0.230 282 11/9/2023
3.0.224 292 11/6/2023
3.0.221 336 11/6/2023
3.0.216 371 10/30/2023
3.0.213 373 10/30/2023
3.0.206 422 10/23/2023
3.0.203 370 10/16/2023
3.0.200 383 10/16/2023
3.0.195 381 10/16/2023
3.0.188 381 10/8/2023
3.0.179 415 9/23/2023
3.0.176 434 9/19/2023
3.0.173 476 9/19/2023
3.0.168 430 9/19/2023
3.0.152 436 9/12/2023
3.0.149 471 9/12/2023
3.0.144 450 9/4/2023
3.0.141 485 8/24/2023
3.0.138 471 8/14/2023
3.0.135 512 8/14/2023
3.0.132 450 8/14/2023
3.0.123 494 8/14/2023
3.0.118 464 8/8/2023
3.0.115 501 7/23/2023
3.0.112 470 7/23/2023
3.0.102 515 7/23/2023
3.0.98 494 7/23/2023
3.0.96 504 7/23/2023
3.0.76 461 7/19/2023
3.0.70 534 7/14/2023
3.0.65 495 7/14/2023
3.0.62 476 7/13/2023
3.0.59 530 7/11/2023
3.0.56 423 7/11/2023
3.0.51 510 7/3/2023
3.0.48 478 6/19/2023
3.0.47 533 6/15/2023
3.0.44 467 6/5/2023
3.0.43 488 6/5/2023
3.0.40 456 6/5/2023
3.0.35 481 5/22/2023
3.0.32 474 5/22/2023
3.0.25 489 5/4/2023
3.0.22 509 5/3/2023
3.0.17 593 4/8/2023
3.0.11 510 4/4/2023
3.0.6 707 3/26/2023
3.0.2 524 3/26/2023
2.0.95 586 3/26/2023
2.0.80 474 3/26/2023
2.0.73 553 3/26/2023
2.0.70 559 3/22/2023
2.0.65 647 3/5/2023
2.0.61 570 3/3/2023
2.0.58 576 3/3/2023
2.0.50 567 3/3/2023
2.0.0 594 2/27/2023
1.0.49 1,208 4/18/2020
1.0.41 867 4/18/2020
1.0.24 873 4/18/2020

Add support to .NET Standard 2.0