get_users
Retrieve GitLab user details by providing specific usernames to access profile information and account data.
Instructions
Get GitLab user details by usernames
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| usernames | Yes | Array of usernames to search for |
Input Schema (JSON Schema)
{
"properties": {
"usernames": {
"description": "Array of usernames to search for",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"usernames"
],
"type": "object"
}