Appearance
Query Audit Records
Query audit log records for a site, tenant, division, or organization. Returns a paginated list of audit events. Requires ADMIN permissions.
Parameters
| name * are required parameters | data type | description |
|---|---|---|
body.filters | object | Optional filters to narrow the audit log results |
body.filters.userId | string | Filter by a specific user ID |
body.filters.action | string | Filter by a specific action type |
body.filters.startDate | string | Filter by start date (ISO 8601) |
body.filters.endDate | string | Filter by end date (ISO 8601) |
body.page | number | Page number for pagination (default: 1) |
body.pageSize | number | Number of records per page (default: 50) |
Return Value
A paginated list of audit log records.
Examples
bash
curl -X POST "https://app.wombat.software/api/{targetPath}/audit" \
-H "Content-Type: application/json" \
-H "Authentication: Bearer ..." \
-d '{"filters": {"action": "form.submitted"}, "page": 1, "pageSize": 25}'ENDPOINTS
post
/api/{targetPath}/audit