#Fernando Has-capture-sdk
1 messages ยท Page 1 of 1 (latest)
Hello ๐
Give me a moment to catch up here and I'll respond as soon as I can ๐ Thanks
what sdk are you currently using? can you provide more information about your integration?
.net
If a send a Capture
var service = new PaymentIntentService(); service.Capture("pi_3L8PmDApKrRbGUUm03xhST0u");
In the documentation it says only about success and error
But what if she is not captured synchronously? The result of the capture would be up to the webhook
what flow are you testing? Can you share the docs you're looking at?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
If it is not captured synchronously, then it should have processing status
What payment method are you testing with for this?
I'm using the PaymentMethodService, Create, using the credit card with the card numbers informed in the test, for each situation, when I create the PaymentIntent, I pass the paymentMethod id.
I see. With credit cards, the capture should be synchronous I think.
Thank you very much!