The CLI has been refactored to support exporting multiple data types in one command. When exporting multiple data types, you can either send it directly to the stdout or you can export to a data file. What MintAPI will do with your specified filename is add a suffix based on the type of data you are exporting. The following table outlines the option selected and its corresponding suffix:
Option
Suffix
accounts
account
budgets
budget
transactions
transaction
categories
category
investments
investment
net-worth
net_worth
credit-score
credit_score
credit-report
credit_report
For example, if you specify current as your filename, format as csv, and you export account and transaction, then you will receive two files: current_account.csv and current_transaction.csv.
The CLI has been refactored to support exporting multiple data types in one command. When exporting multiple data types, you can either send it directly to the
stdout
or you can export to a data file. What MintAPI will do with your specified filename is add a suffix based on the type of data you are exporting. The following table outlines the option selected and its corresponding suffix:For example, if you specify
current
as your filename, format as csv, and you exportaccount
andtransaction
, then you will receive two files:current_account.csv
andcurrent_transaction.csv
.