Revolut - Get Accounts
Description
Section titled “Description”This module allows getting Revolut Business accounts. Revolut supports multiple currencies, each with its own virtual account and independent balance.
Configuration
Section titled “Configuration”| Field | Type | Required | Description |
|---|---|---|---|
| credentials_id | credential | Yes | Revolut credentials |
| account_id | string | No | Specific account UUID (empty = all) |
Credentials
Section titled “Credentials”This module requires Revolut Business type credentials with the following fields:
| Field | Description |
|---|---|
access_token | Revolut Business API access token |
sandbox | Sandbox mode for testing (true/false) |
Output
Section titled “Output”Specific account
Section titled “Specific account”{ "success": true, "account": { ... }, "account_id": "a1b2c3d4-...", "name": "Main Account", "currency": "EUR", "balance": 15000.50, "state": "active", "message": "Cuenta Main Account (EUR): 15000.50 EUR"}All accounts
Section titled “All accounts”{ "success": true, "accounts": [ ... ], "total": 5, "by_currency": { "EUR": [...], "USD": [...], "GBP": [...] }, "currencies": ["EUR", "USD", "GBP"], "message": "5 cuentas encontradas en 3 monedas"}Account Statuses
Section titled “Account Statuses”| Status | Description |
|---|---|
| active | Active and operational account |
| inactive | Inactive account |
Usage Example
Section titled “Usage Example”{ "credentials_id": "revolut_empresa", "account_id": ""}API Used
Section titled “API Used”- API: Revolut Business API
- Endpoint:
GET /api/1.0/accounts,GET /api/1.0/accounts/{id} - Documentation: https://developer.revolut.com/docs/business/accounts
- Revolut supports multiple currencies in the same business account
- Each currency has its own virtual account
- The balance is returned in the account’s native currency
Related Nodes
Section titled “Related Nodes”- RevolutCreatePayment: Create payments from an account
- RevolutGetTransactions: View account transactions
- RevolutGetExchangeRates: Check exchange rates between accounts