Skip to content

Releases: mercadopago/sdk-dotnet

2.3.8

21 Mar 12:59
5256f7b
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.3.7...2.3.8

2.3.7

12 Mar 21:54
9bb06ba
Compare
Choose a tag to compare

add Marketplace field at PaymentCreateRequest

2.3.6

22 Feb 13:52
75f4463
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.3.5...2.3.6

2.3.5

30 Nov 18:06
959ce63
Compare
Choose a tag to compare

Add transaction id in SDK response.

2.3.4

31 Oct 21:15
1d7b8b3
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.3.3...2.3.4

2.3.3

15 Aug 17:47
95dc650
Compare
Choose a tag to compare

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

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;