Mercadopago Sdk Dotnet Versions Save

Mercado Pago's Official .Net SDK

2.3.8

1 month ago

What's Changed

New Contributors

Full Changelog: https://github.com/mercadopago/sdk-dotnet/compare/2.3.7...2.3.8

2.3.7

1 month ago

add Marketplace field at PaymentCreateRequest

2.3.6

2 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/mercadopago/sdk-dotnet/compare/2.3.5...2.3.6

2.3.5

4 months ago

Add transaction id in SDK response.

2.3.4

5 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/mercadopago/sdk-dotnet/compare/2.3.3...2.3.4

2.3.3

8 months ago

this version adds a new method to OauthClient that allows the creation of Oauth credentials using client id and client secret.

2.3.2

10 months ago

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

2.3.1

11 months ago

Update PaymentThreeDSInfo's mapping of json property three_ds_info

2.3.0

1 year ago

Added support for the Invoices API.

2.2.3

1 year ago

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;