added createAlarmList and adjusted EKKO Report

This commit is contained in:
Nico Melone
2025-06-25 13:50:16 -05:00
parent ee8d386cd8
commit 79515224b3
15 changed files with 1378690 additions and 56 deletions

View File

@@ -133,7 +133,7 @@ def getDeviceByName(textSearch: str, deviceType: str = None, sortProperty: str =
def getDevicesByCustomerId(customer_id):
response = requests.get(
url_base + f"customer/{customer_id}/devices?pageSize=4&page=0", headers=headers
url_base + f"customer/{customer_id}/devices?pageSize=100&page=0", headers=headers
)
#print(response.json())
return response.json().get('data', [])