#Jeko
1 messages · Page 1 of 1 (latest)
hello! can you share the PaymentIntent id or Checkout Session id?
last test was here : cs_test_a17rNWiZ8h0zLpVd9lM2dRbr7zAus3e37ZDdtyGAFuNePxAeQSj9I3RncV
I retrieve the payment id with session id with stripe.checkout.sessions.retrieve
you didn't pass in capture_method:manual in the test Checkout Session which you mentioned https://dashboard.stripe.com/test/logs/req_7JDJNlAqfwpIUu
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
payment_intent_data: {capture_method: 'manual'}, line 18 ? is not ok ?
i don't know why, but your code didn't pass in that parameter for that specific Checkout Session. Did you possibly add in that parameter after you created that Checkout Session id? Or if you try to create a new Checkout Session and check the request logs in the Dashboard to see if it's being passed in your request?
same probleme with cs_test_a16ZZiVcdyFGvUXSYEY4m95a0AYiEXLGordXnxd8fUZvCbXLsLQNdQcc4M
just realised that your implementation is wrong - It should be something like
...
payment_intent_data : {
capture_method : ...,
description : ...,
}
...