curl "https://api.scanova.io/user-logs/?status=completed" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"id": 482,
"status": "completed",
"result_file": "https://cdn.example.com/media/user_logs/results/1042/2026/09/Logs_09072026143210.csv",
"completed_on": "2026-09-07T14:32:10Z",
"created": "2026-09-07T14:31:55Z",
"created_by_name": "Anuj Sharma"
},
{
"id": 481,
"status": "failed",
"result_file": null,
"completed_on": null,
"created": "2026-09-06T09:12:00Z",
"created_by_name": "ops@scanova.io"
}
]
}
Benutzerprotokolle & Aktivität
Verlauf der Benutzerprotokoll-Exporte auflisten
GET /user-logs/
GET
/
user-logs
/
curl "https://api.scanova.io/user-logs/?status=completed" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"id": 482,
"status": "completed",
"result_file": "https://cdn.example.com/media/user_logs/results/1042/2026/09/Logs_09072026143210.csv",
"completed_on": "2026-09-07T14:32:10Z",
"created": "2026-09-07T14:31:55Z",
"created_by_name": "Anuj Sharma"
},
{
"id": 481,
"status": "failed",
"result_file": null,
"completed_on": null,
"created": "2026-09-06T09:12:00Z",
"created_by_name": "ops@scanova.io"
}
]
}
Listet die Protokollexport-Jobs des Kontos auf, auf dem Management-API-Host (
api.scanova.io), authentifiziert mit Ihrem rohen Management-API-Schlüssel.
GET https://api.scanova.io/user-logs/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
string
Filtert nach Job-Status:
new, completed oder failed.string
Durchsucht Vorname, Nachname und E-Mail des exportierenden Benutzers.
string
Sortiert nach
created, completed_on oder status — mit - vorangestellt für absteigend. Standard ist -created.integer
Seitenzahl.
curl "https://api.scanova.io/user-logs/?status=completed" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"id": 482,
"status": "completed",
"result_file": "https://cdn.example.com/media/user_logs/results/1042/2026/09/Logs_09072026143210.csv",
"completed_on": "2026-09-07T14:32:10Z",
"created": "2026-09-07T14:31:55Z",
"created_by_name": "Anuj Sharma"
},
{
"id": 481,
"status": "failed",
"result_file": null,
"completed_on": null,
"created": "2026-09-06T09:12:00Z",
"created_by_name": "ops@scanova.io"
}
]
}
Es gibt keinen separaten Status-Endpunkt anhand der ID für einen Exportjob — fragen Sie stattdessen diese Liste ab (filtern nach
status oder suchen/sortieren, um einen bestimmten Job zu finden) statt eines GET /user-logs/{id}/, den es nicht gibt; dieser Pfad unterstützt nur DELETE.result_file und completed_on sind null, bis der Job completed erreicht. Ein Job, der länger als 30 Minuten bei new hängen bleibt, wird automatisch als failed markiert.
Verwandte Themen
- Export von Benutzeraktivitätsprotokollen auslösen — einen neuen Job starten.
- Exportverlaufseintrag löschen — den Tracking-Datensatz eines Jobs entfernen.
- Übersicht über die Management API — das Authentifizierungsschema und die Quota-Regeln für diesen Endpunkt.
Autorisierungen
Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: 401f7ac837da42b97f613d789819ff93537bee6a. A header containing more than one space-separated part is rejected outright. Requests also require the request's Host header to be the management API host (e.g. api.scanova.io) — the same key sent to the regular API host will not authenticate.
Abfrageparameter
Verfügbare Optionen:
new, completed, failed Antwort
200 - application/json
Paginated list of export jobs.
War diese Seite hilfreich?