#johnwick_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/1410489885307043872
đ 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.
- johnwick_api, 1 day ago, 34 messages
- johnwick_api, 1 day ago, 16 messages
Hi there, what's the payment intent ID?
its this pi_3S0xnHBd8PxzBU0N1qG4TWPl
I want to know how I can capture this. The documentation says there is supposed to be an Approve button but I can't see it. https://docs.stripe.com/radar/reviews/auth-and-capture#capturing-a-payment-after-a-review-is-approved
The payment intent is created with capture_method set to manual and it's curretly status is requires_capture
Correct.
https://docs.stripe.com/api/payment_intents/capture you can call this API to capture the payment
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
But I should call this only after the 3DS is successful right?
After 3ds is successful will I receive a webhook event?
You should only capture the payment when its status becomes requires_capture
You can listen to payment_intent.amount_capturable_updated event to get notified when a paymentIntent has amount_capturable updated
Alright got it. You mean this event I need to capture at my end:
Yes you are right!
ah okay got it. Thanks will check this. thanks for the help. But why is the capture button not visible in the dashboard though?
Maybe your user role doesn't have the permission to capture a payment? https://docs.stripe.com/get-started/account/teams/roles
Ohh understood. Got it.
But what would happen if i send capture_method=automatic in the payment intent?
when I have a 3ds in between
The payment_intent will transition to succeeded if the 3DS authentication is successful
but it won't capture the payment before the 3ds is completed right? Even if I send automatic
No it won't.