curl --request POST \
--url https://api.example.com/api/v1/audit-logs \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>"
}
'{
"data": [
{}
]
}Retrieves audit logs. Allows for filtering and searching through historical audit data.
curl --request POST \
--url https://api.example.com/api/v1/audit-logs \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>"
}
'{
"data": [
{}
]
}The query string to filter audit logs.
A successful response containing a list of audit log entries that match the provided query.
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