Skip to content

Instantly share code, notes, and snippets.

@JuaniVeltri
Created February 8, 2019 14:15
Show Gist options
  • Save JuaniVeltri/f6bb29bbae1f96384b8cde2d57bd6306 to your computer and use it in GitHub Desktop.
Save JuaniVeltri/f6bb29bbae1f96384b8cde2d57bd6306 to your computer and use it in GitHub Desktop.
using MercadoPago;
using MercadoPago.DataStructures.Payment;
using MercadoPago.Resources;
//...
MercadoPago.SDK.SetAccessToken("ENV_ACCESS_TOKEN");
Payment payment = new Payment()
{
TransactionAmount = float.Parse("105"),
Description = "Awesome Wooden Wallet",
PaymentMethodId = "rapipago",
Payer = new Payer(){
Email = "test_user_19653727@testuser.com"
}
};
// Save and posting the payment
payment.Save();
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment