Revolut - Get Cards
Description
Section titled “Description”This module allows getting Revolut Business virtual and physical cards. It includes spending limit, status, and type information for each card.
Configuration
Section titled “Configuration”| Field | Type | Required | Description |
|---|---|---|---|
| credentials_id | credential | Yes | Revolut credentials |
| card_id | string | No | Specific card UUID |
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 card
Section titled “Specific card”{ "success": true, "card": { ... }, "card_id": "card-abc123", "last_four": "4242", "state": "active", "type": "virtual", "holder_name": "Juan Garcia", "spending_limits": { "single": { "amount": 5000, "currency": "EUR" }, "day": { "amount": 10000, "currency": "EUR" }, "month": { "amount": 50000, "currency": "EUR" } }, "message": "Tarjeta ****4242 (active)"}Card list
Section titled “Card list”{ "success": true, "cards": [ ... ], "total": 12, "stats": { "virtual": 8, "physical": 4, "active": 10, "frozen": 1, "inactive": 1 }, "message": "12 tarjetas encontradas (10 activas)"}Card Statuses
Section titled “Card Statuses”| Status | Description |
|---|---|
| active | Active and ready to use |
| frozen | Temporarily frozen |
| inactive | Inactive |
| terminated | Permanently canceled |
Card Types
Section titled “Card Types”- virtual: Virtual card (immediate use, ideal for online purchases)
- physical: Physical card (requires shipping)
Spending Limits
Section titled “Spending Limits”| Type | Description |
|---|---|
| single | Per-transaction limit |
| day | Daily limit |
| week | Weekly limit |
| month | Monthly limit |
| quarter | Quarterly limit |
| year | Annual limit |
| all_time | Lifetime total limit |
Usage Example
Section titled “Usage Example”{ "credentials_id": "revolut_empresa"}API Used
Section titled “API Used”- API: Revolut Business API
- Endpoint:
GET /api/1.0/cards - Documentation: https://developer.revolut.com/docs/business/cards
- Virtual cards can be created instantly
- Each card can have customized spending limits
- Cards can be frozen/unfrozen from the API
- Ideal for expense control per employee or department
Related Nodes
Section titled “Related Nodes”- RevolutGetAccounts: Get accounts associated with cards
- RevolutGetTransactions: View card transactions