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"
}
]
}
User Logs & Activity
List user log export history
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"
}
]
}
Lists the account’s log export jobs, on the Management API host (
api.scanova.io), authenticated with your raw Management API key.
GET https://api.scanova.io/user-logs/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
string
Filters by job status:
new, completed, or failed.string
Searches the exporting user’s first name, last name, and email.
string
Sorts by
created, completed_on, or status — prefix with - for descending. Default is -created.integer
Page number.
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"
}
]
}
There is no separate by-id status endpoint for an export job — poll this list (filtering by
status, or searching/ordering to find a specific job) rather than a GET /user-logs/{id}/, which doesn’t exist; that path only supports DELETE.result_file and completed_on are null until the job reaches completed. A job stuck at new for more than 30 minutes is automatically marked failed.
Related
- Trigger a user activity log export — start a new job.
- Delete an export history record — remove a job’s tracking record.
- Management API overview — the auth scheme and quota rules that apply to this endpoint.
Authorizations
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.
Query Parameters
Available options:
new, completed, failed Response
200 - application/json
Paginated list of export jobs.
Was this page helpful?