POST
/
api
/
v1
/
audit-logs
import os
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key=os.environ.get("SAMPLEHC_API_KEY"),  # This is the default and can be omitted
)
response = client.v1.query_audit_logs(
    query="query",
)
print(response.data)
{
  "data": [
    {}
  ]
}

Body

application/json

Response

200
application/json

A successful response containing a list of audit log entries that match the provided query.