v1

latestOpenAPI 3.1.02026-07-24181585937.4 KB
User

user.info

Retrieves detailed information about a specific user by their ID.

Requires the organizationRead permission.

post/user.info

Request body

userIdstring uuid required

The unique identifier for the user

Example request

{
  "userId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e"
}

Response

Responses from the user.info endpoint

OR

Example response

{
  "success": true,
  "results": {
    "id": "3c5e1e9f-17b5-4c8e-8d1a-9f6e4b3a2c1d",
    "firstName": "Jane",
    "lastName": "Smith",
    "email": "jane.smith@example.com",
    "globalRole": "Elevated Access",
    "isEnabled": true,
    "updatedAt": "2024-01-15T10:30:00.000Z",
    "managerId": "7f8e9d6c-5b4a-4e2d-9c0b-9a8f7e6d5c4b"
  }
}