#Shainkey-payouts

1 messages · Page 1 of 1 (latest)

eager granite
#

Hey, not sure I understand the issue. Can you clarify?

#

Is there a Stripe object I can look at?

timber fog
#

For ex:
When i used business account
and tried to make payment in USD
From IOS app side with-out filling the card details, it auto happens, card is visible for few seconds then payments happens success

#

for my personal account it is working fine for INR currency?
Is there an any settings that we need to make enable

eager granite
#

I'm not sure I understand the behaviour you're describing. Can you share a video?

timber fog
#

Yes
sending

#

Please check card details pop up and invisible but the payments is happens successfully

jolly shore
#

ynoj had to step out but I can help here. Do you have an ID for that payment or a payment like it?

timber fog
#

Yes

#

pi_3LDSjWA1AvSnwwTv1dQCrzWb
This is the payment intent id

jolly shore
#

Thank you, checking in to that ID

#

So it looks like that payment intent was confirmed with one of our test payment method IDs that wouldn't have come from that sheet

  payment_method: "pm_card_us"
}```
#

And it actually looks like that call came from your server rather than your client. Can you try removing whatever code on your server confirms that payment like that and try that test flow again?

timber fog
#

You means that we need to add from client side?

#

Actually, i m creating payment intent from server side and that payment intent and empheral key front-end dev is passing for opening the card details

#

i also tried with
{
payment_method: "pm_card_visa"
}
the same issue is occuring

#

stripe.PaymentIntent.confirm(
paymentIntent.id,
payment_method="pm_card_us",
)
passing like this

jolly shore
#

The PaymentIntent that you sent me was confirmed server side via our Python library. My point was more that if you want to test confirming these payments client side, you should not confirm them server side first

timber fog
#

or else i can remove that payment_method from server side and test again?

jolly shore
#

If that payment intent is the exact one from the video that you sent, I don't think that this is a client side issue.

#

I would recommend removing your server side call to confirm the payment intent before testing again