stripe.net - How to Update Account in StripeApi using C#? -
i trying update account in stripe api
using stripe.net
library ,using stripeaccountservice
, storing in stripeaccount
class made myself store result returned api :
var accountservice = new stripeaccountservice("secretkey in string"); striperequestoptions option = new striperequestoptions(); option.stripeconnectaccountid = "accountid update"; stripeaccount x = accountservice.get(option); x.email = "local@local.com"; //then not know how save changes api now.
but stripeaccountservice
class has no update method define. how can perform update on account.
stripe.net not support managed accounts: "managed accounts valuable service well, not available in stripe.net yet." https://github.com/jaymedavis/stripe.net#stripe-connect
Comments
Post a Comment