Retrieve a collection of audit logs.
OK
Total number of resource.
100
const response = await fetch('http://127.0.0.1:8888/api/audit_logs', { method: 'GET', headers: {}, }); const data = await response.json();
{ "count": 100, "items": [ { "id": {}, "created_at": {}, "source": "text", "ip": {}, "action": "CREATE", "object_type": "ALLOWED_COUNTRY_CODES", "user_name": "text", "object_name": "text", "old_state": "text", "new_state": "text" } ] }