manage_users
Search and get Azure DevOps users. Retrieve the currently authenticated user or search for users by display name or email.
Actions
Section titled “Actions”| Action | Description | Required Params | Optional Params | Write |
|---|---|---|---|---|
get_current | Get the currently authenticated user | No | ||
search | Search users by display name or email | query | No |
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
action | string | Required. The action to perform: get_current, search |
query | string | Search query — display name or email (required for search) |
Examples
Section titled “Examples”Get the current user
Section titled “Get the current user”{ "action": "get_current"}Search for a user
Section titled “Search for a user”{ "action": "search", "query": "jane.doe@example.com"}