Send an International Payout
Send money abroad to a recipient.
You only need to send the recipient’s payee id (payeeId), the bank
destination to pay into (destinationId), and the transaction details
(amount, sourceCurrency, destinationCurrency). Everything else —
the sender’s details, the recipient’s full details, the bank details, the
collection branch, and which partner delivers the money — is worked out for
you behind the scenes. Your sender details are configured for your platform
by the Finogate team.
Set up the recipient first, in two steps:
- Create the payee —
POST /v1/platform/payees(returns the payee’sid, which is thepayeeIdyou pass here). - Add their bank destination —
POST /v1/platform/payees/bank-accounts/{payee_id}(returns the destination’sid, which is thedestinationIdyou pass here). Includepayout_branch_idso the payout can be routed.
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
Customer-facing request body for POST .../international/payouts.
The customer pre-creates the payee and its bank destination via the
Finogates resource APIs (/payees and /payees/bank-accounts/{payee_id}),
then references them here by ID. The sender, the recipient's full details,
and bank-info fields are resolved internally from those records and from the
platform's configured Sender Defaults.
ID of a Finogates-managed payee (created via the payees API).
ID of the wallet to debit for this payout. Required — there is no implicit default wallet. The wallet must belong to your platform and its currency must match sourceCurrency.
Amount in sourceCurrency to debit from your wallet.
x > 0ISO-4217 funding-side currency (e.g. USD).
3ISO-4217 recipient-side currency (e.g. INR).
3ID of a bank destination that belongs to payeeId. Optional — when omitted the server uses the payee's sole active bank destination. Required only when the payee owns multiple banks.
Customer-supplied reference / idempotency anchor. Auto-generated when omitted.
32Pre-quoted amount in destinationCurrency. When omitted Finogates derives it from the live FX rate.
Optional fallback for the destination branch id. The canonical place to store this is on the bank destination itself (payout_branch_id set when adding the bank destination via POST .../payees/bank-accounts/{payee_id}); supply it here only when the destination predates that field — newer registrations have it stored and Finogates resolves the routing automatically.
x >= 1Response
Successful Response
Standard response wrapper for single-object responses and errors.
Generic over the payload type. A route that declares
CommonResponse[SomeModel] gets the real data schema rendered in
OpenAPI/Swagger; a bare CommonResponse leaves data untyped.

