get_user_info
Retrieve detailed user profile information from Slack workspace using their unique user ID to access contact details and account information.
Instructions
Get detailed information about a specific user
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| user | Yes | User ID (e.g., U1234567890) | 
Input Schema (JSON Schema)
{
  "properties": {
    "user": {
      "description": "User ID (e.g., U1234567890)",
      "type": "string"
    }
  },
  "required": [
    "user"
  ],
  "type": "object"
}