Decimal payment
Closed this issue · 2 comments
agavrilin commented
I'm using mangopay with my rails app, and I'm trying to make a payment amount 56.56, but I get the payment amount 57. How i can use decimal amount?
javiercr commented
@temi5606 all currencies are specified in cents, so you need to pass { Currency: 'EUR', Amount: 5656 }
for 56.56 €
.
agavrilin commented
thank you :)