I'm using Cyclos 4.6 and I have a problem with searchAccountHistory. What i want to achieve is: get all the payments from the account history that have payment status 1 = value 1 AND payment status 2 = value 2.
I use the WS API and the parameters I send are like this:
Code: Select all
query = {
'account': bank_account_id,
'orderBy': 'DATE_DESC',
'pageSize': 1000, # maximum pageSize: 1000
'currentPage': 0,
'statuses': [
'value1',
'value2',
]
}
There is no comment in the API so it's difficult to know the exact meaning of the 'statuses' parameter:
https://documentation.cyclos.org/4.6/ws ... l#STATUSES
Is this a bug or did I misunderstand the API?
Best regards,