Sign in

List system log events

documented

Lists System Log events for auditing and monitoring.

GET /api/v1/logsSystem Logsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{OKTA_DOMAIN}}/admin/api/v1/logs" \
  -X GET \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -G \
  --data-urlencode "since={{$since}}" \
  --data-urlencode "until={{$until}}" \
  --data-urlencode "after={{$after}}" \
  --data-urlencode "filter={{$filter}}" \
  --data-urlencode "q={{$q}}" \
  --data-urlencode "limit={{$limit}}" \
  --data-urlencode "sortOrder={{$sortOrder}}"