Auto receive funds
Automatically receive and convert funds from other countries and currencies
Some customers can automatically receive funds from overseas. Meaning, if we detect an overseas deposit to the Flash Payments controlled bank account(s) then we can automatically create an inbound payment, convert funds, and top up your Flash Payments balance with AUD.
Note! For sub-clients, a complete real-world address is mandatory. All address fields must be provided when creating a sub-client in our system. Additionally, funds must be sent from a bank account registered under your name or your sub-client’s name. In some cases, but not always, the payment must include the specific payment reference we provide. See below for more details.
Here is how it looks step by step.
We would need to enable the foreign currency auto-receiving feature for you.
You, or your Sub-client, would have a special bank account in, say, SEPA zone. Find the details below.
The account number and payment reference depends on the currency and country you wish to deposit to. E.g. the EUR currency account is usually a British IBAN (starts with "GB").
You, or your Sub-client, would deposit money to it. Make sure to submit the exact payment reference we told you! Otherwise, your funds will be returned.
The Flash Payments would detect the account funding event and automatically create a EUR->AUD payment for you.
You would receive at least two webhook notifications -
payment_created
andpayment_complete
.Your Flash Payments AUD balance would increase accordingly.
To find which foreign currency bank account you would need to deposit to, please go to the FlashConnect and find there the list of inbound currencies we support and the corresponding bank account numbers. It's called the "Funding Accounts" throughout the user interface.
To find out the Funding Accounts via API please use the fundingAccounts
query.
You should deposit your foreign currency to:
{
fundingAccounts(input: { currencies: [EUR, USD, HKD, CNY] }) {
iban
accountNo
accountName
accountAddress
bic
currency
externalReference
}
}
Your sub-clients should deposit their foreign currency to:
{
subClients(input: { externalId: "991188227733" }) {
id
externalId
fundingAccounts(input: { currencies: [EUR, USD, CNY] }) {
iban
accountNo
accountName
accountAddress
bic
currency
externalReference
}
}
}
Last updated
Was this helpful?