Skip to content

manage_users

Search and get Confluence users.

ActionDescriptionRequired Params
get_currentGet the currently authenticated user
searchSearch users by display namequery
ParameterTypeDescription
actionstringRequired. get_current or search
querystringSearch query — display name, email, etc. (for search)
limitintMaximum results to return (for search, default 20)
{
"action": "get_current"
}

Response:

{
"account_id": "5b10a2844c20165700ede21g",
"display_name": "Jane Doe",
"email": "jane.doe@example.com",
"account_type": "atlassian"
}
{
"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"
}
]
}