Skip to content

[FEATURE] Add new User Log endpoint #299

@elmurci

Description

@elmurci

Problem
GET /v1/user/me returns both data references and logs for the user. Currently, when querying logs, we need to call this endpoint which doesn't have pagination.

Feature request: add new /v1/user/log endpoint with pagination

I want to:

Display log records in pages of 20-50 items
Show "Page 3 of 25" in UIs
Avoid loading thousands of records at once
something like: GET /v1/user/log?limit=20&offset=40

  Response: {
    "data": [...20 records...],
    "total": 500,
    "limit": 20,
    "offset": 40
  }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions