Pull audit logs
Returns all audit log entries created after since.
Request
Method: GET
Path: /api/sync/pull/audit-logs
Authentication: Not required
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| undefined | string | undefined | No | |
| since | string | query | No |
Responses
200 - Audit logs
404 - Tenant not found
Examples
cURL
curl -X GET \
-H "Content-Type: application/json" \
http://localhost:3000/api/sync/pull/audit-logs
JavaScript
const response = await fetch('http://localhost:3000/api/sync/pull/audit-logs', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
This documentation is automatically generated from the OpenAPI specification.