Click here to Skip to main content
15,905,875 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am trying to update Account in Stripe Api using class:

C#
 var accountService = new StripeAccountService("secretKey in string");
            StripeRequestOptions option = new StripeRequestOptions();
            option.StripeConnectAccountId = "AccountId to update";
            var x = accountService.Get(option);
            x.Email = "Local@local.com";
//Then i do not know how to update now.


But this class has no Update method define. please tell me how i can perform update on Account.

Thank you
Posted
Updated 9-Oct-15 3:14am
v4
Comments
Richard Deeming 9-Oct-15 9:20am    
You forgot to mention which library you're using - is it this one[^]?

If so, it doesn't seem to have an option to update your account. Assuming the Stripe API supports it, you should log an issue on the project[^] to request the missing feature.
lokopi.nagar 9-Oct-15 9:27am    
Yes the same one.
lokopi.nagar 9-Oct-15 9:27am    
So is their any way to do it?
Richard Deeming 9-Oct-15 9:34am    
Does the Stripe API[^] support it?

* If yes, then post an issue to the GitHub project asking them to add the missing feature.
* If no, then there is no way to do it.
lokopi.nagar 9-Oct-15 21:43pm    
Yes stripe api support it!!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900