We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8a7a018 + e1e673c commit 1d698efCopy full SHA for 1d698ef
1 file changed
frameioclient/client.py
@@ -434,3 +434,18 @@ def get_review_link_items(self, link_id):
434
"""
435
endpoint = '/review_links/{}/items'.format(link_id)
436
return self._api_call('get', endpoint)
437
+
438
+ def get_audit_logs(self, account_id):
439
+ """
440
+ Get audit logs for the currently authenticated account.
441
442
+ :Args:
443
444
+ Example::
445
446
+ client.get_audit_logs(
447
+ account_id="6bdcb4d9-9a2e-a765-4548-ae6b27a6c024"
448
+ )
449
450
+ endpoint = '/accounts/{}/audit_logs'.format(account_id)
451
+ return self._api_call('get', endpoint)
0 commit comments