v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
Users

Gets inactive users

Gets all inactive users. An inactive user is a user that has not logged in in the last 180 days

get/api/admin/user-admin/inactive

Response

inactiveUsersSchema

versioninteger required

The version of this schema. Used to keep track of compatibility

Example response

{
  "version": 1,
  "inactiveUsers": [
    {
      "id": 123,
      "name": "Ned Ryerson",
      "email": "user@example.com",
      "username": "nedryerson",
      "seenAt": "2024-01-25T11:42:00.345Z",
      "createdAt": "2023-12-31T23:59:59.999Z",
      "patSeenAt": "2024-01-01T23:59:59.999Z"
    }
  ]
}