#nicola_api
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1375089304442765393
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
👋 unfortunately we only provide help on this channel in English
if you want help in your native tongue please contact https://support.stripe.com/?contact=true
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Ok, no problem i can translate it
Hi everyone, I’m trying to specify payment_method_types within a Subscription Schedule (the phases[n].payment_settings.payment_method_types field) via API. In the Dashboard I clearly see that creating/updating the schedule includes this parameter, but I can’t find it in the official docs or via the SDK. What is the correct way to pass it?
I tried with Stripe.net v48.2.0-beta.2, adding an ExtraParams["phases"] block on SubscriptionScheduleCreateOptions to manually inject the JSON with payment_settings.
I forced the Stripe-Version: 2025-04-30 header both globally (via StripeClientOptions.ApiVersion) and on the individual call via RequestOptions.ApiVersion, but I still get “unknown parameters: payment_settings.”
I checked the 2025-04-30 version of the docs and confirmed that the properties exist in the Dashboard UI, yet they aren’t accepted by the Schedule API.
unfortunately that's not possible
the only way to achieve this is to start with a subscription and set the PMTs there https://docs.stripe.com/api/subscriptions/create#create_subscription-payment_settings-payment_method_types
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
and then create a schedule from that subscription https://docs.stripe.com/api/subscription_schedules/create#create_subscription_schedule-from_subscription
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.