#dineshkumar_docs

1 messages ยท Page 1 of 1 (latest)

pallid moonBOT
#

๐Ÿ‘‹ 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/1356978278958764115

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

left rock
#

Hi ๐Ÿ‘‹ I'm sorry, I don't understand what you're trying to ask. Would you mind trying to rephrease your question as a question or help me understand what behavior you want to adjust about your flow?

gilded roost
#

When creating a subscription, if a invoice amount is below $0.50 with apply the proration
and the invoice as paid and subscription as active.

#

but i want incomplete status for subscription, because i setup is PaymentBehavior = "default_incomplete",

#

i tried attempted below
var subscriptionOptions = new SubscriptionCreateOptions
{ Customer = customer.Id,
Items = subscriptionItems,
PaymentSettings = customer.InvoiceSettings.DefaultPaymentMethodId == null ? new SubscriptionPaymentSettingsOptions { SaveDefaultPaymentMethod = "on_subscription" } : null,
PaymentBehavior = "default_incomplete",
PromotionCode = promoCodeId,
BillingCycleAnchorConfig = always_invoice,
ProrationBehavior = "always_invoice"

left rock
#

Learn how to use the customer invoice balance.

See what currencies you can use for making charges and for paying out to your bank account.

gilded roost
#

ok, understood, thanks!

left rock
#

Any time!

gilded roost
#

Initially stripe team advised the steps for above my scenario

#

can i Create a Subscription before the Collect payment Method Details?

left rock
#

Yeah, are you running into an error when trying to do so?

gilded roost
#

no i am not tried this "Create a Subscription before the Collect payment Method Details"

#

if possible please give the steps flow and doc..

left rock
#

Whoops, nevermind, that guid was the wrong way around so I deleted the link.

gilded roost
#

sorry my question is wrong wait..

left rock
gilded roost
#

can i Create a Subscription after Collect payment Method Details?

#

what i expect steps,
1.Create a Pricing Model if one does not exist
2.Create/Retrieve a Customer
3.Collect payment Method Details
4.Create a Subscription
5.Listen for webhooks

left rock
#

Ah, yup, that's possible too, and is the first guide I had stared to share ๐Ÿ˜… let me grab that link again

gilded roost
#

ok understood, thanks

#

need some clarifications also below,

In my web app I need to have a valid payment method for each customer also should have a successful payment confirmation before using a service.
How to handle this in stripe when i am having a minimum amount invoices to avoid having a active subscription.?

left rock
#

You can't really.

Either you need to ensure the payment is more than our minimum charge amount for the currency being used so a payment can be processed, or be willing to grant access to the service without an initial payment.

gilded roost
#

ok thanks toby.