#Zia
1 messages · Page 1 of 1 (latest)
I asked stripe support to enable on behalf of for subscriptions as well
I received the following email:
now I want to know how can I implement this is .net, as I cannot find any option to add on behalf of in Checkout with subscription mode
can you assist me on this
Can you paste your account ID in this chat?
OK. this param is not available SessionCreateOptions because it's a beta feature. Let me find a way
yes please, thanks
may be I can have a beta package for this
https://github.com/stripe/stripe-dotnet#parameters this is how you add undocumented param in your request
Stripe.net is a sync/async .NET 4.6.1+ client, and a portable class library for stripe.com. - GitHub - stripe/stripe-dotnet: Stripe.net is a sync/async .NET 4.6.1+ client, and a portable class libr...
var options = new SessionCreateOptions{...}
options.AddExtraParam("subscription_data[on_behalf_of]", "ACCOUNT_ID");
So something like this.
thanks, let me check this