User Checking

Check multiple users

Batch check multiple users and retrieve group counts, types, and memberships.

post/v2/checkusers

Request body

Response

Batch check completed successfully

successboolean
totalnumber
foundnumber
notFoundnumber

Example response

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

Changes