Hi Ricky
Account_GetData / Account_GetDataArray gives you information about the account and the current balance.
GetEntryTotalsByDate gives you the entry totals for one or more accounts for a certain date span which is a decimal.
When you're feeding Account_GetEntryTotalsByDate an array of account handles then you get an array of totals back in the same sort order as the input array.
If you need both the account data AND the entry totals by date then you need to call both the Account_GetDataArray and Account_GetEntryTotalsByDate with your Account_GetAll array.
If you have the account data already you can make a smaller call by only asking for totals for accounts of the types that make sense rather than asking for entry totals for all account types.
Account_GetData / Account_GetDataArray gives you information about the account and the current balance.
GetEntryTotalsByDate gives you the entry totals for one or more accounts for a certain date span which is a decimal.
When you're feeding Account_GetEntryTotalsByDate an array of account handles then you get an array of totals back in the same sort order as the input array.
If you need both the account data AND the entry totals by date then you need to call both the Account_GetDataArray and Account_GetEntryTotalsByDate with your Account_GetAll array.
If you have the account data already you can make a smaller call by only asking for totals for accounts of the types that make sense rather than asking for entry totals for all account types.