from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v1.query_audit_logs(
query="query",
)
print(response.data)
{
"data": [
{}
]
}
Retrieves audit logs. Allows for filtering and searching through historical audit data.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v1.query_audit_logs(
query="query",
)
print(response.data)
{
"data": [
{}
]
}
A successful response containing a list of audit log entries that match the provided query.