Skip to content

Latest commit

 

History

History
81 lines (55 loc) · 1.83 KB

group_activity_analytics.md

File metadata and controls

81 lines (55 loc) · 1.83 KB
stage group info
Manage
Optimize
To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments

Group Activity Analytics API

Introduced in GitLab 12.9.

Get count of recently created issues for group

GET /analytics/group_activity/issues_count

Parameters:

Attribute Type Required Description
group_path string yes Group path

Example request:

curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/analytics/group_activity/issues_count?group_path=gitlab-org"

Example response:

{ "issues_count": 10 }

Get count of recently created merge requests for group

GET /analytics/group_activity/merge_requests_count

Parameters:

Attribute Type Required Description
group_path string yes Group path

Example request:

curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/analytics/group_activity/merge_requests_count?group_path=gitlab-org"

Example response:

{ "merge_requests_count": 10 }

Get count of members recently added to group

GET /analytics/group_activity/new_members_count

Parameters:

Attribute Type Required Description
group_path string yes Group path

Example request:

curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/analytics/group_activity/new_members_count?group_path=gitlab-org"

Example response:

{ "new_members_count": 10 }