GET /utils/
Retrieve items.
Retrieves a paginated list of items, returning all items for superusers or only owned items for regular users.
Endpoint
GET /utils/
Parameters
| Name | Type | Description |
|---|---|---|
| session | SessionDep | The database session dependency used to execute queries. |
| current_user | CurrentUser | The authenticated user object used to determine access levels and filter items by ownership. |
| skip | int = 0 | The number of items to skip before starting to collect the result set for pagination. |
| limit | int = 100 | The maximum number of items to return in a single response. |
Response
| Status | Description |
|---|---|
| 200 | Successfully retrieved the list of items. Returns ItemsPublic. |