#Sarvesh
1 messages · Page 1 of 1 (latest)
How can I help?
I have doing payment Intent request and it is getting failed with below error
pi_3NG1FsSA3VAcbOfK1BRmn2xE
"amount": 1200,
"currency": "dkk",
"last_payment_error": {
"message": "As per Indian regulations, export transactions require a description. More info here: https://stripe.com/docs/india-exports",
what needs to be done for this?
The error message tells you exactly what's missing
https://stripe.com/docs/india-accept-international-payments#international-payments-for-services
Provide description
$stripe->paymentIntents->create([
'amount' => 1099,
'currency' => 'usd',
'description' => 'Software development services',
]);
liks this ?
there's an example on the link above
So first needs to create customer on Stripe with buyer’s name, billing address and a description and then create payment intetent object?
What if we want to receive payment within Europe or Denmark only then also is this needed?
This error was not getting before with some historical test transactions
is it happened because I set my Stripe user country as India?
Yes, because the PaymentIntent is created on an indian Stripe account
ok, I tried to update the accout settings - country to Denmark but it does not updated
its again shows India
I don't think you can just switch the account country as is.
You can create a separate test account for the other countries