Get all types of transaction

This commit is contained in:
Adam Goldsmith 2022-01-01 16:27:31 -05:00
parent 63bd8efaf2
commit 69bcb71091

View File

@ -210,7 +210,7 @@ class MembershipWorks:
r = self._get_v1( r = self._get_v1(
BASE_URL + "/v1/csv", BASE_URL + "/v1/csv",
params={ params={
"crm": "12,13,14,18,19", # transaction types, see CRM "crm": ",".join(str(k) for k in CRM.keys()),
**({"txl": ""} if json else {}), **({"txl": ""} if json else {}),
"sdp": start_date.strftime("%s"), "sdp": start_date.strftime("%s"),
"edp": end_date.strftime("%s"), "edp": end_date.strftime("%s"),