Skip to content

Releases: mercadopago/sdk-dotnet

2.3.2

30 May 17:34
76dc378
Compare
Choose a tag to compare

this version adds address and phone fields to PaymentPayerRequest, required for PSE payments.

2.3.1

23 May 17:41
3056d29
Compare
Choose a tag to compare

Update PaymentThreeDSInfo's mapping of json property three_ds_info

2.3.0

28 Mar 13:32
b9c4644
Compare
Choose a tag to compare

Added support for the Invoices API.

2.2.3

05 Dec 22:20
d208286
Compare
Choose a tag to compare

SDK Dotnet V2 - Change in field AccountId

We changed the field AccountId, which is normally used for Pix transactions. If your app makes use of this field in your integration, alter its type from long to BigInteger.

var client = new PaymentClient();
Payment p = await client.GetAsync(12345);

// AccountId was long and is now BigInteger
var collectorAccountId = p.PointOfInteraction.TransactionData.BankInfo.Collector.AccountId;

// AccountId was long and is now BigInteger
var payerAccountId = p.PointOfInteraction.TransactionData.BankInfo.Payer.AccountId;

2.2.2

05 Dec 22:16
7e6c73d
Compare
Choose a tag to compare

Added the DefaultCard property in the CustomerRequest class so that it is possible to define the customer's default card.

Added the TicketUrl property in the TransactionData class to return the URL that accesses the rendered ticket with instructions for making the payment. This property is used only in the PIX payment method.

2.2.1

16 Aug 17:52
524b666
Compare
Choose a tag to compare
Merge pull request #151 from mercadopago/feature/add-linkedto-v2

Add linked_to parameter to Point of Interaction

2.2.0

16 Aug 17:52
a08595a
Compare
Choose a tag to compare
Merge pull request #147 from mercadopago/release/2.2.0

Release/2.2.0

2.1.0

05 Jan 19:27
76b9488
Compare
Choose a tag to compare
  • Add idempotency in refund

1.10.2

29 Mar 12:52
Compare
Choose a tag to compare

Fix empty list serialization problem in taxes.

2.0.0

25 Mar 19:34
cba640b
Compare
Choose a tag to compare

A brand new version of the SDK that has the following features:

  • Support to .Net Core 2.0+, .Net 5.0 and .Net Framework 4.6.1+
  • Support to async methods
  • Per request configuration
  • User-friendly error handling