Converts balance from one currency to another. In the API you can either send target_amount or source_amount and the API will calculate the other amount for you.
The currency code in ISO 4217 format. Supported currencies: USD,EUR and GBP.
The currency code in ISO 4217 format. Supported currencies: USD,EUR and GBP.
The amount you want to convert. A positive integer representing the smallest currency unit. For example, if the amount is $299.00, then pass 29900 in this field. In the case of three decimal currencies, such as KWD, BHD and OMR, to represent an amount of 295.991, pass the value as 295990. And in the case of zero decimal currencies such as JPY, for amount ¥295, pass the value as 295. Only one of `source_amount` or `target_amount` can be sent.
- object
- object (2)
curl -i -X POST \
https://api.glomopay.com/api/v1/balance_conversions \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"source_currency": "USD",
"target_currency": "USD",
"source_amount": 1000
}'Refund created successfully
The unique identifier for the balance balance.
The status of the balance conversion.
{ "id": "conv_6776d57dnbTWj", "from": { "amount": 1000, "currency": "USD" }, "to": { "amount": 1000, "currency": "USD" }, "fees": { "amount": 1000, "currency": "USD" }, "mid_market_rate": { "currency": "USD", "rate": 1.4 }, "status": "success", "created_at": "2021-01-01T00:00:00Z" }