v1

latestOpenAPI 3.0.2Apache License 2.02026-07-13109285691.8 KB
Source Accounts

Transfer Funds between source accounts

Transfer funds between source accounts for a Payor. The 'from' source account is identified in the URL, and is the account which will be debited. The 'to' (destination) source account is in the body, and is the account which will be credited. Both source accounts must belong to the same Payor. There must be sufficient balance in the 'from' source account, otherwise the transfer attempt will fail.

post/v2/sourceAccounts/{sourceAccountId}/transfers

Path parameters

sourceAccountIdstring uuid required

The 'from' source account id, which will be debited

Request body

toSourceAccountIdstring uuid required

The 'to' source account id, which will be credited

amountinteger required

Amount to transfer, in minor units

currencystring required

Example request

{
  "amount": 800828191,
  "currency": "USD",
  "toSourceAccountId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91"
}

Response

Request Processed