0

currently our account requests API version is 2018-02-06 and we are upgrading to 2020-03-02

so As part of Accounts API Argument Changes

enter image description here

Now few fields are managed with Persons object

latest NuGet packages supports this

enter image description here

but it is not avaible in old versions. can we manage this without updating the NuGet package?

saicharan
  • 435
  • 6
  • 18

1 Answers1

1

The best and recommended option is to upgrade the NuGet package. That said, it's entirely possible to form your own HTTP request manually outside of the library.

Here are the available options:

https://stripe.com/docs/api/persons/update?lang=curl

Here is some more information about making the HTTP request directly from C#:

How to make HTTP POST web request

cjav_dev
  • 2,895
  • 19
  • 25