Body
application/json
The query string to filter audit logs.
Response
A successful response containing a list of audit log entries that match the provided query.
An array of audit log records matching the query.
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": [
{}
]
}
The query string to filter audit logs.
A successful response containing a list of audit log entries that match the provided query.
An array of audit log records matching the query.
Show child attributes