We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 328008c commit 9b11aaaCopy full SHA for 9b11aaa
descope/management/audit.py
@@ -87,9 +87,9 @@ def search(
87
if text is not None:
88
body["text"] = text
89
if from_ts is not None:
90
- body["from"] = from_ts.timestamp() * 1000
+ body["from"] = int(from_ts.timestamp() * 1000)
91
if to_ts is not None:
92
- body["to"] = to_ts.timestamp() * 1000
+ body["to"] = int(to_ts.timestamp() * 1000)
93
94
response = self._auth.do_post(
95
MgmtV1.audit_search,
0 commit comments