User Checking

Check multiple users

Batch check multiple users and retrieve their group memberships or group counts

post/checkusers

Request body

Response

Batch check completed successfully

successboolean
totalnumber

Total number of user IDs checked

foundnumber

Number of users found

notFoundnumber

Number of users not found

Example response

{
  "success": true,
  "total": 5,
  "found": 3,
  "notFound": 2,
  "users": [
    {
      "userId": "123456789",
      "username": "JohnDoe",
      "groupCount": 3
    }
  ]
}

Changes