manage_users
Search and get Confluence users.
Actions
Section titled “Actions”| Action | Description | Required Params |
|---|---|---|
get_current | Get the currently authenticated user | |
search | Search users by display name | query |
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
action | string | Required. get_current or search |
query | string | Search query — display name, email, etc. (for search) |
limit | int | Maximum results to return (for search, default 20) |
Examples
Section titled “Examples”Get current user
Section titled “Get current user”{ "action": "get_current"}Response:
{ "account_id": "5b10a2844c20165700ede21g", "display_name": "Jane Doe", "email": "jane.doe@example.com", "account_type": "atlassian"}Search users
Section titled “Search users”{ "action": "search", "query": "Jane"}Response:
{ "total": 2, "users": [ { "account_id": "5b10a2844c20165700ede21g", "display_name": "Jane Doe", "account_type": "atlassian" }, { "account_id": "5b10a2844c20165700ede22h", "display_name": "Jane Smith", "account_type": "atlassian" } ]}