post https://api.banking.netevia.dev/Report/internalTransfers
This API endpoint retrieves a list of internal transfers for use in generating the Daily Spending Report. It allows users to access detailed information about transfers that occurred between accounts within the same banking institution, filtered by date or custom criteria.
Body Parameters:
- take (int32 | null):
Specifies the number of internal transfers to retrieve per request (pagination). Setting this to null retrieves all results at once. - afterCursor (string | null):
A cursor string for fetching the next batch of internal transfers (used for pagination). It enables you to continue retrieving transfers from where the previous request stopped. - fromDate (date-time | null):
The starting date for the internal transfers report. Only transfers occurring on or after this date will be returned. Example: 2024-10-09T14:40:03.974Z. - toDate (date-time | null):
The ending date for the internal transfers report. Only transfers occurring on or before this date will be included. Example: 2024-10-09T14:40:03.974Z. - jsonFilter (string | null):
A JSON-formatted string for applying custom filters to the internal transfers query. This could include conditions such as transfer type, specific accounts involved, or transaction statuses.
Summary:
The POST /Report/internalTransfers API facilitates retrieving internal transfer data for reporting and analysis purposes, particularly for creating daily spending reports. It supports pagination, date filtering, and custom filtering, making it a versatile tool for financial reporting and data management.