v7

latestOpenAPI 3.0.1raw.githubusercontent.com2026-08-01426118.4 KB
Admin Utils

Get user info batch

Get info for multiple users.

get/api/admin/v1/user/info_batch

Query parameters

idsstring required

Comma-separated list of user IDs (e.g. "1,2,3"). Up to 2000 ids are honored.

Response

successful

Example response

{
  "users": [
    {
      "id": 42,
      "username": "orpheus",
      "display_name": "orpheus",
      "slack_uid": "U0266FRGP",
      "slack_username": "orpheus",
      "github_username": "orpheus",
      "timezone": "America/New_York",
      "country_code": "US",
      "trust_level": "blue",
      "avatar_url": "https://avatars.slack-edge.com/2024-03-20/orpheus_512.png",
      "slack_avatar_url": "https://avatars.slack-edge.com/2024-03-20/orpheus_512.png",
      "github_avatar_url": "https://avatars.githubusercontent.com/u/12345?v=4"
    }
  ]
}