Overview
Link an international bank account to enable cross-border wire transfers and international payouts. This endpoint allows you to connect a customer’s international bank account as a payout destination.Prerequisites
- An application token (obtained from creating a payout link or account widget)
- Valid access token
Endpoint
- POST
{{LIQUIDITY_URL}}/v1/ext/application-token/:token/linked-accounts/:currency/link/international_bank/:step - Auth: Bearer
{{accessToken}}
Path Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
token | string | Application token from payout/account widget | Yes |
currency | string | Currency code (e.g., USD) | Yes |
step | string | Usually 1 | Yes |
Request
Request Body Fields
| Field | Type | Description | Required |
|---|---|---|---|
label | string | Display name for the linked account | Yes |
data.firstName | string | First name of recipient | Yes |
data.lastName | string | Last name of recipient | Yes |
data.name | string | Business/account name | Yes |
data.accountNumber | string | International bank account number | Yes |
data.swiftOrBic | string | SWIFT/BIC code | Yes |
data.bankName | string | Name of the international bank | Yes |
data.recipientAddress | string | Full address of the recipient | Yes |
data.recipientCity | string | City of the recipient | Yes |
data.recipientState | string | State/region of the recipient | Yes |
data.recipientPostalCode | string | Postal code of the recipient | Yes |
data.email | string | Email of the recipient | Yes |
data.recipientCountry | string | ISO country code (2 letters, e.g., NG) | Yes |
data.recipientType | string | Recipient type: personal or business | Yes |
Response (200)
Response Fields
| Field | Type | Description |
|---|---|---|
data.data.id | string | Linked account ID (use for withdrawals) |
data.data.currency | string | Currency of the linked account |
data.data.optionType | string | Account type: international_bank |
data.data.account.label | string | Display label for the account |
data.data.account.lastFourDigits | string | Last 4 digits of account number |
data.data.wallet.id | string | Associated wallet ID |
data.data.wallet.balance | string | Current wallet balance |
data.data.entity.id | string | Entity ID associated with the account |
data.data.entity.entityType | string | Entity type: USER or BUSINESS |
Notes
- Store the
idfrom the response for use in withdrawal requests - Provide accurate recipient address/country data for compliance
- SWIFT/BIC should match the destination bank
- International wire transfers may have higher fees and longer processing times
- The linked account can be used for withdrawals once successfully created