Actions7
Overview
This node interacts with the Monobank API to retrieve various types of banking information. It supports operations such as getting client info, accounts, jars (savings pots), managed accounts, account statements, currency rates, and bank sync data. It is useful for automating financial data retrieval from Monobank for personal or business use, such as fetching account details, transaction statements, or currency exchange rates.
Use Case Examples
- Retrieve a list of all accounts associated with a Monobank client.
- Fetch detailed client information including accounts and savings jars.
- Get a statement for a specific account within a date range.
- Obtain current currency exchange rates from Monobank.
Properties
| Name | Meaning |
|---|---|
| Operation | Specifies the type of data to retrieve from Monobank, such as client info, accounts, jars, managed accounts, statements, currency rates, or bank sync data. |
| Account ID | Account ID for statement retrieval, required when operation is 'Get Statement'. |
| From Date | Start date for the statement period, required when operation is 'Get Statement'. |
| To Date | End date for the statement period, optional when operation is 'Get Statement'. |
Output
JSON
json- The JSON response from the Monobank API containing the requested data. For 'Get Accounts', this is an array of account objects; for 'Get Client Info', full client details; for 'Get Statement', transaction statements; and similarly for other operations.
Dependencies
- Requires an API token credential for Monobank to authenticate requests for most operations except public ones like currency rates and bank sync data.
Troubleshooting
- If the API token is missing or invalid, the node will throw an error indicating that a token is required for the operation.
- Network or API errors will result in a 'Request failed' error with details from the Monobank API error description if available.
- Ensure the 'Account ID' and date parameters are correctly set when retrieving statements to avoid errors.
Links
- Monobank API Documentation - Official documentation for Monobank API endpoints and usage.