Skip to content

Retrieve association counts for a user

GET
/api/v4/users/{id}/associations_count

Retrieves the number of groups, projects, issues, and merge requests associated with a specified user.

id
required
integer

ID of the user to query.

OK

Media type application/json
object
groups_count
string
projects_count
string
issues_count
string
merge_requests_count
string
Example generated
{
"groups_count": "example",
"projects_count": "example",
"issues_count": "example",
"merge_requests_count": "example"
}

Bad Request

Not Found