Actions99
- Expenses Actions
- Group Accounts Actions
- Group Account Codes Actions
- Accounts Actions
- Purchase Orders Actions
- Get A List Of Purchase Orders
- Create A New Purchase Order
- Get A Purchase Order
- Update A Purchase Order
- Open A Purchase Order
- Get A List Of Purchase Orders Items For A Specific Purchase Order
- Create A Purchase Order Item
- Get A Purchase Order Item
- Update A Purchase Order Item
- Delete A Purchase Order Item
- Get A List Of Goods Received Notes For A Specific Purchase Order
- Create A Goods Received Note
- Attach A File To A Goods Received Note
- Delete A Goods Received Note
- Suppliers Actions
- Fund Accounts Actions
- Cards Actions
- Expense Categories Actions
- Tax Rates Actions
- Amortizations Actions
- Account Teams Actions
- Account Codes Actions
- External Teams Actions
- Custom Fields Actions
- Get Custom Fields
- Create A New Custom Field
- Get Custom Field
- Update Custom Field
- Delete A Custom Field And All Its Values
- Get Custom Field Values
- Create A Custom Field Value
- Delete Custom Field Values
- Get A Custom Field Value
- Update A Custom Field Value
- Delete A Custom Field Value
- Get Managers For A Specific Custom Field Value
- Adds Managers For A Specific Custom Field Value
- Replaces Managers For A Specific Custom Field Value
- Removes Managers For A Specific Custom Field Value
- Webhook Subscriptions Actions
- Group Teams Actions
Overview
This node operation retrieves deposit records associated with a specific fund account within a financial or payment system. It is useful for scenarios where you need to track, audit, or analyze deposits made into fund accounts, such as reconciliation processes, reporting on cash inflows, or monitoring account activity.
For example, a finance team might use this node to fetch all deposits made to a particular fund account over a given period, applying filters to narrow down the results by date or other criteria.
Properties
| Name | Meaning |
|---|---|
| Account Id | Identifier of the account from which to retrieve fund account deposits. |
| Fund Account Id | Identifier of the specific fund account whose deposits are being queried. |
| Filter | JSON-stringified and URL-encoded filter expression object that conforms to a deposit filter schema. Used to refine the query (e.g., by date ranges or other deposit attributes). |
| Skip | Number of deposit records to skip from the beginning of the result set (useful for pagination). |
| Take | Maximum number of deposit records to return (limits the size of the result set). |
Output
The output contains a JSON array of deposit objects corresponding to the specified fund account and applied filters. Each deposit object typically includes details such as deposit amount, date, status, and any metadata related to the deposit transaction.
If the node supports binary data output (not indicated here), it would represent attachments or documents related to deposits, but based on the provided code and properties, the output is purely JSON structured data about deposits.
Dependencies
- Requires an API key credential or similar authentication token configured in n8n to access the external service managing fund accounts and deposits.
- The node depends on a REST API endpoint that supports querying fund account deposits with filtering, pagination (
$skip,$take), and JSON-based filter expressions. - No additional external libraries beyond those bundled with the node are required.
Troubleshooting
Common issues:
- Invalid or missing
Account IdorFund Account Idwill cause the API request to fail or return no data. - Malformed JSON in the
Filterproperty can lead to errors; ensure the filter is properly stringified and URL-encoded. - Pagination parameters (
SkipandTake) must be non-negative integers; invalid values may cause unexpected results or errors. - Network or authentication errors if the API key or base URL is misconfigured.
- Invalid or missing
Error messages:
- "Unauthorized" or "Authentication failed": Check that the API key credential is correctly set up and has necessary permissions.
- "Invalid filter format": Verify the JSON structure of the filter expression.
- "Resource not found": Confirm that the provided account and fund account IDs exist and are correct.
Links and References
- Refer to the external API documentation for fund accounts and deposits to understand the filter schema and available fields.
- n8n documentation on using JSON and query parameters in nodes for advanced filtering and pagination.