Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 2.33 KB

MockAccountData.md

File metadata and controls

11 lines (8 loc) · 2.33 KB

# MockAccountData

Properties

Name Type Description Notes
account_id int Account identifier
account_balance float The balance that this account should be set to.<br/><br/><b>NOTE</b>:<br/>&bull; If the specified balance does not add up to the account's current balance plus the sum of the 'newTransactions', then finAPI will fix the balance deviation with the insertion of an adjusting entry ('Zwischensaldo' transaction).<br/>&bull; This service is not calculating exchange rates for transactions, so if 'newTransactions' contains any transactions with a currency different to the account's currency, then the balance deviation might get calculated incorrectly.
new_transactions \OpenAPIAccess\Client\Model\NewTransaction[] <strong>Type:</strong> NewTransaction<br/> New transactions that should be imported into the account (at most 1000 transactions at once). Please make sure that the value you pass in the 'accountBalance' field equals the current account balance plus the sum of the new transactions that you pass here, otherwise finAPI will detect a deviation in the balance and might add an adjusting entry ('Zwischensaldo' transaction). <br/>Please also note that it is not guaranteed that all transactions that you pass here will actually get imported. More specifically, finAPI will ignore any transactions whose booking date is prior to the date of the last successful account update minus 10 days (which is the default 'update window' that finAPI uses when importing new transactions). Also, finAPI will ignore any transactions that are considered duplicates of already existing transactions within the update window. This is the case for instance when you try to import a new transaction with the same booking date and same amount as an already existing transaction. In such cases, you might get an adjusting entry too ('Zwischensaldo' transaction), as your given balance might not add up to the transactions that will exist in the account after the update. [optional]

[Back to Model list] [Back to API list] [Back to README]