get_user
Retrieve detailed information about a specific user by providing their user ID. Ideal for integration with the Goodday project management platform to access user data securely.
Instructions
Get details of a specific user.
Args: user_id: The ID of the user to retrieve
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"user_id": {
"title": "User Id",
"type": "string"
}
},
"required": [
"user_id"
],
"title": "get_userArguments",
"type": "object"
}