Reference
/- Execute FX transfer between wallets
Get current FX conversion rate
Get historic FX rate
Fetch available FX currencies
Execute FX transfer betwe...
🔒 Private label — contact sales. Requires a private-label entitlement on your API client.
Performs an internal fund transfer between two wallets with FX conversion. Auto-generates a reference if not provided.
Security
oauth2ClientCredentials(Required scopes: fx:write)
- Mock serverhttps://developer.boyahq.com/_mock/v2/openapi/fx/transfer
- Productionhttps://api.boyahq.com/v2/fx/transfer
- Sandboxhttps://sandbox.api.boyahq.com/v2/fx/transfer
curl -i -X POST \
https://developer.boyahq.com/_mock/v2/openapi/fx/transfer \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'business_id: string' \
-d '{
"amount": 100,
"description": "Internal transfer between accounts",
"currency": "USD",
"fromWalletId": "wallet_1",
"toWalletId": "wallet_2",
"reference": "FX_a1b2c3d4e5"
}'