#namrata-help
1 messages · Page 1 of 1 (latest)
can you share the request id [0]? it'd look like req_xxx
[0] https://support.stripe.com/questions/finding-the-id-for-an-api-request
means how to handle this error
According to the error message, the minimum amount needs to be at least 50 cents and INR7.7 converts to only $0.14
if you can share the request id, i can take a closer look.
I have check dashboard there is no request id generated for this
do you have a PaymentIntent or Charge id?
let me check it
can i send token id
tok_1KyVj8Kz8WXEqDYJS2ASMbCB
card_1KyVj8Kz8WXEqDYJTg2Ytjpf
you would want to take a look at : https://stripe.com/docs/currencies#minimum-and-maximum-charge-amounts
your charge amount is smaller than the minimum amount. After conversion, the minimum amount for your account needs to be >= $SGD 0.50
Stripe will automatically convert the presentment currency (a.k.a the currency your customer is paying in) to your Stripe's account settlement currency (a.k.a the currency which we will pay out to your bank account) : https://stripe.com/docs/currencies/conversions
can i do like after creating charge object then i will check whetaer $charge[amount]>= $SGD 0.50 if yes then show error to user and terminate payment
when you make the request to create the Charge, the request will fail with that particular error already
you can display that error to the user
means i need to handle this exception using try catch block
hello, yes?
is it correct??
yes, that's correct
means i need to handle all exception that stripe provide
exceptions should be handled anyway