slack_get_user_profile
Retrieve detailed profile information for a specific Slack user by providing their user ID to access contact details, roles, and workspace information.
Instructions
Get detailed profile information for a specific user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_id | Yes | The ID of the user |
Input Schema (JSON Schema)
{
"properties": {
"user_id": {
"description": "The ID of the user",
"type": "string"
}
},
"required": [
"user_id"
],
"type": "object"
}