Mangopay/mangopay2-ruby-sdk

Decimal payment

Closed this issue · 2 comments

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?

@temi5606 all currencies are specified in cents, so you need to pass { Currency: 'EUR', Amount: 5656 } for 56.56 €.

thank you :)