#Shainkey-payouts
1 messages · Page 1 of 1 (latest)
Hey, not sure I understand the issue. Can you clarify?
Is there a Stripe object I can look at?
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
I'm not sure I understand the behaviour you're describing. Can you share a video?
Yes
sending
Please check card details pop up and invisible but the payments is happens successfully
ynoj had to step out but I can help here. Do you have an ID for that payment or a payment like it?
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?
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
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
Okay got it
Means , there should be some issue from client side correct ?
But the same thing is working with my personal account keys
or else i can remove that payment_method from server side and test again?