Skip to main content
Audit endpoints let you review actions across the workspace, with optional filters for users, actions, and time ranges.

Basic request and response

Query the workspace audit log with GET /api/v1/app/audit.
curl "https://{BASE_URL}/api/v1/app/audit?start_date=1738291200&end_date=1738972800&include=User&page=1&page_size=50" \
  -H "Authorization: Bearer {API_TOKEN}"
[]

Project audit log

curl "https://{BASE_URL}/api/v1/app/project/{projectID}/audit?start_date=1738291200&end_date=1738972800&page=1&page_size=50" \
  -H "Authorization: Bearer {API_TOKEN}"
[]

Errors and edge cases

  • 400: invalid time range or filters.
  • 403: insufficient permissions.