Download user activity CSV
Download user activity as CSV
Authentication: personal access token. The spec defines an api_key security
scheme — send an Authorization: ApiKey <your-personal-access-token> header
(value format: ApiKey <your key>). A session_cookie scheme (connect.sid)
exists for browser sessions. Operations in this spec declare security: [], an
artifact of the upstream spec generator — authentication is still enforced by the
server.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
projectUuid | string | Yes |
Responses
200 — Success
{
"status": "ok",
"results": "string"
}default — Error
{
"error": {
"data": "string",
"message": "string",
"name": "string",
"statusCode": 0
},
"status": "error"
}Get user activity
Get user activity for a project
Get download activity log
Get download activity log for a project, ordered by most recent first. Two pagination modes are supported: - Offset mode: pass `page` (1-indexed) and `pageSize`. Response includes `page`/`totalResults`/`totalPageCount`. - Cursor mode: pass `cursor` (from a previous response's `nextCursor`) and `pageSize`. `page` is ignored when `cursor` is provided. Avoids the count query so `page`/`totalResults`/`totalPageCount` are null in the response.