#lucas_reddy
1 messages ยท Page 1 of 1 (latest)
๐ Hi there, Happy to help!
Could you please share more details about the failure Payment? like the Subscription Id?
Sorry for late reply
Subscription ID : sub_1MD6hfBataYFhNKgdqRlirwM
How are you creating that subscription?
You should be following this integration:
https://stripe.com/docs/billing/subscriptions/build-subscriptions
You can also use test clocks, in order to create simulations and advance time in order to test the recurring billing
https://stripe.com/docs/billing/testing/test-clocks
i am following this
https://stripe.com/docs/api/subscription_schedules/create
https://stripe.com/docs/api/subscription_schedules/update
As your last dev said.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Seems expected as there's no default payment method on the Customer object you passed when creating the subscription. The associated payment is in a requires_payment_method state: https://dashboard.stripe.com/test/payments/pi_3MD7fVBataYFhNKg1MEXTevs
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
You need to bring the customer on-session to provide payment details, and confirm the PI: https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements#collect-payment
ok let me try