Stampfactory
Dokumentation
Audit-Log

Audit-Anfragen auflisten

List audit log entries for the current tenant with filtering and pagination.

GET
/audit/requests
AuthentifizierungBearer <token>

Bearer-Token, erhalten über den Login-Endpunkt (POST /rest/login).

Ort: header

Query-Parameter

limit?integer

Deliberately no max: an oversized limit is capped by the controller instead of rejected, which keeps existing clients working. The rule only guarantees the type.

Wertebereich1 <= value
offset?integer
Wertebereich0 <= value
method?|

Erlaubte Werte

  • "GET"
  • "POST"
  • "PUT"
  • "PATCH"
  • "DELETE"
  • "HEAD"
  • "OPTIONS"
  • "get"
  • "post"
  • "put"
  • "patch"
  • "delete"
  • "head"
  • "options"
status?|
Wertebereich100 <= value <= 599
path?|
Längelength <= 255
client_ip?string|null
user_id?|
Formatuuid
request_id?|
Längelength <= 64
from?|
Formatdate-time
to?|
Formatdate-time

Response-Body

application/json

application/json

application/json

curl -X GET "https://example.com/audit/requests"
{  "data": [    {      "correlation_id": "string",      "user_id": "string",      "client_ip": "string",      "method": "string",      "uri": "string",      "status_code": 0,      "duration_ms": 0,      "timestamp": "string"    }  ],  "total": 0,  "limit": 0,  "offset": 0}