get_user_info
Retrieve detailed user information including username, name, and nickname by providing a user ID to access Mattermost user profiles.
Instructions
사용자 ID로 사용자의 상세 정보를 조회합니다. username, 이름, 닉네임 등을 확인할 수 있습니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_id | Yes | 조회할 사용자의 ID |
Input Schema (JSON Schema)
{
"properties": {
"user_id": {
"description": "조회할 사용자의 ID",
"type": "string"
}
},
"required": [
"user_id"
],
"type": "object"
}