gitlab_get_user
Retrieve detailed information about a specific user from a GitLab account by providing the user ID, facilitating user management and access control.
Instructions
Get details of 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": "number"
}
},
"required": [
"user_id"
],
"type": "object"
}