Get a list of all users

GET /Api/Users

Requires verified email; Requires one of the following permissions: Users.IndexUsers; Requires the following features to be enabled: Users

Query parameters

  • Filters string
  • Sorts string
  • Page integer(int32)

    Minimum value is 1, maximum value is 2147483647.

  • PageSize integer(int32)

    Minimum value is 1, maximum value is 2147483647.

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • id string(uuid)
    • name string | null
    • email string | null
    • emailVerifiedAt string(date-time) | null
    • realName string | null
    • class string | null
    • userGroups array[object] | null
      Hide userGroups attributes Show userGroups attributes object
      • id integer(int32)
      • name string | null
      • Additional properties are NOT allowed
    • createdAt string(date-time)
    • updatedAt string(date-time)
    • Additional properties are NOT allowed
  • 401

    Unauthorized

  • 403

    Forbidden

GET /Api/Users
curl \
 -X GET https://app.lovassy.hu/Api/Users \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "email": "string",
    "emailVerifiedAt": "2024-05-04T09:42:00+00:00",
    "realName": "string",
    "class": "string",
    "userGroups": [
      {
        "id": 42,
        "name": "string"
      }
    ],
    "createdAt": "2024-05-04T09:42:00+00:00",
    "updatedAt": "2024-05-04T09:42:00+00:00"
  }
]