Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 2.61 KB

UpdateMultipleTransactionsParams.md

File metadata and controls

15 lines (12 loc) · 2.61 KB

# UpdateMultipleTransactionsParams

Properties

Name Type Description Notes
is_new bool Whether this transactions should be flagged as 'new' or not. Any newly imported transaction will have this flag initially set to true. How you use this field is up to your interpretation. For example, you might want to set it to false once a user has clicked on/seen the transaction. [optional]
is_potential_duplicate bool You can set this field only to 'false'. finAPI marks transactions as a potential duplicates when its internal duplicate detection algorithm is signaling so. Transactions that are flagged as duplicates can be deleted by the user. To prevent the user from deleting original transactions, which might lead to incorrect balances, it is not possible to manually set this flag to 'true'. [optional]
category_id int Identifier of the new category to apply to the transaction. When updating the transaction's category, the category's fields 'id', 'name', 'parentId', 'parentName', and 'isCustom' will all get updated. To clear the category for the transaction, the categoryId field must be passed with value 0. [optional]
train_categorization bool This field is only regarded when the field 'categoryId' is set. It controls whether finAPI's categorization system should learn from the given categorization(s). If set to 'true', then the user's categorization rules will be updated so that similar transactions will get categorized accordingly in future. If set to 'false', then the service will simply change the category of the given transaction(s), without updating the user's categorization rules. The field defaults to 'true' if not specified. [optional] [default to true]
label_ids int[] Identifiers of labels to apply to the transaction. To clear transactions' labels, pass an empty array of identifiers: '[]' [optional]
ids int[] A comma-separated list of transaction identifiers. If specified, then only transactions whose identifier match any of the given identifiers will be regarded. The maximum number of identifiers is 100. [optional]
account_ids int[] A comma-separated list of account identifiers. If specified, then only transactions whose account's identifier is included in this list will be regarded. [optional]

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