Docs: Standardize API operation names and descriptions
<!--IssueSummary start--> <details> <summary> Everyone can contribute. [Help move this issue forward](https://handbook.gitlab.com/handbook/marketing/developer-relations/contributor-success/community-contributors-workflows/#contributor-links) while earning points, leveling up and collecting rewards. </summary> - [Work on this issue](https://contributors.gitlab.com/manage-issue?action=work&projectId=278964&issueIid=585399) - [Close this issue](https://contributors.gitlab.com/manage-issue?action=close&projectId=278964&issueIid=585399) </details> <!--IssueSummary end--> > ## Hi community contributors! :wave: > > Do you want to work on this issue? Please **follow all instructions** below, and please work on **only 3 files at a time**, to give everyone a chance to contribute. Thank you! > > MRs created for this issue between January 22 and January 29, 2026, are eligible for the latest [GitLab Hackathon](https://contributors.gitlab.com/hackathon)! > > If you are new contributing, see: https://about.gitlab.com/community/contribute/. The linked tutorial will help you get started as a contributor! ## Problem to solve The markdown API documentation files in `/doc/api/` use inconsistent operation names and descriptions. We need to standardize these to follow GitLab's RESTful API style guide for better consistency and clarity across all API documentation. ## Implementation plan **You don't need to be assigned to this issue to work on it**. To contribute: 1. Review the list of [available files](https://docs.google.com/spreadsheets/d/13ifdyamxVCcatgBktVpIf5rw9S3t4n89UhnBS97f6IQ/edit?gid=0#gid=0) in `/doc/api/` and put your username next to the files you want to work on. Please choose **only 3 files at a time**, to give everyone a chance. When you have completed work on those files, you can start working on the next batch of files. 2. Review operation titles and descriptions for the files. 3. Standardize the titles to use approved verbs. - The title is the section heading for operation. For example: `## Create an application`, `## List all events`, or `### Create a group access token`. - Many operations may already use the standard verb (or the verb that best matches the operation). - For details, see [Operation titles](https://docs.gitlab.com/development/documentation/restful_api_styleguide/#operation-titles). 3. Standardize the first sentence of the operation description. - The description is the paragraph after the heading, or history or details blocks. - This first sentence should broadly match what is used for the heading. For example: `Creates an application`, `List all events associated with the user`, or `Creates a group access token for a specified group`. - For details, see [Operation description](https://docs.gitlab.com/development/documentation/restful_api_styleguide/#operation-descriptions). 1. Open a [merge request](https://docs.gitlab.com/ee/development/documentation/) using the **Documentation** merge request description template. Include all your changes in a single MR, do not open multiple MRs for changes to the same file. 2. In the merge request description, include this text: `https://gitlab.com/gitlab-org/gitlab/-/work_items/585399` After your MR is merged, update the spreadsheet and select 'Merged'. ## Examples ### Updated headings Update the titles for each operation to use consistent verbs based on HTTP method. For details on the recommended verbs for each HTTP method, see [Operation titles](https://docs.gitlab.com/development/documentation/restful_api_styleguide/#operation-titles). | HTTP Method | Original | Updated | |-------------|----------|---------| | `GET` (Singleton) | `List projects and groups that a user is a member of` | `Retrieve membership list for a user` | | `GET` (Singleton) | `Get a single pipeline` | `Retrieve a pipeline` | | `GET` (List) | `List project pipelines` | `List all project pipelines` | | `GET` (List) | `List group issues` | `List all group issues` | | `PUT` | `Update pipeline metadata` | `Update a pipeline` | | `POST` | `Create repository branch` | `Create a repository branch` | | `POST` | `Protect repository branch` | `Protect a repository branch` | | `DELETE` | `Unprotect repository branch` | `Unprotect a repository branch` | | `DELETE` | `Delete a pipeline` | `Delete a pipeline` | > [!NOTE] > The style guide verb list is not comprehensive. There may be times when a non-standard verb just makes more sense. Use your best judgment! ### Updated introduction Update the first sentence for the description of each operation based on the title. For details, see [Operation description](https://docs.gitlab.com/development/documentation/restful_api_styleguide/#operation-descriptions). The first sentence should broadly repeat the title of the operation. In many cases it can be helpful to add a little more context to this sentence. Generally, it can be helpful to highlight the most important element from the path param. For example, if the request includes a specific group ID, you may want to mention that in the description (`Remove a member from a specified group`).Sometimes there may be multiple elements in the request path, just use your best judgement to highlight the most important element. For example, `Deletes a specified issue from a specified project` sounds redundant, but `Deletes a specified issue from a project` still gets the point across. If you don't feel confident in adding this extra context, it's still totally acceptable to just use the basic structure. | HTTP Method | Original | Basic | Advanced | |-------------|----------|---------|-------------------| | `GET` (Singleton) | `List projects and groups that a user is a member of` | `Retrieve membership list for a user` | `Retrieves the membership list for a specified user` | | `GET` (Singleton) | `Retrieve a pipeline` | `Retrieves a pipeline` | `Retrieves a specified pipeline for a project` | | `GET` (List) | `List all project pipelines` | `Lists all project pipelines` | `Lists all pipelines for a specified project` | | `GET` (List) | `List all group issues` | `Lists all group issues` | `Lists all issues for a specified group` | | `PUT` | `Update a pipeline` | `Updates a pipeline` | `Updates a specified pipeline for a project` | | `POST` | `Create a repository branch` | `Creates a repository branch` | `Creates a repository branch for a specified project` | | `POST` | `Protect a repository branch` | `Protects a repository branch` | `Protects a specified repository branch for a project` | | `DELETE` | `Unprotect a repository branch` | `Unprotects a repository branch` | `Unprotects a specified repository branch for a project` | | `DELETE` | `Delete a pipeline` | `Deletes a pipeline` | `Deletes a specified pipeline for a project` | > [!NOTE] > - It may be common for you to only need to update the description and the title may be correct. > - There may be existing content already used in the description. If so, just add the standard structure first, and adjust the existing text to fit. ## Who can address the issue Community contributors with familiarity with GitLab's API documentation and the RESTful API style guide. No special expertise required—this is a great opportunity for documentation improvements. ## Other links/references - [Operation Titles Style Guide](https://docs.gitlab.com/development/documentation/restful_api_styleguide/#operation-titles) - [Operation Descriptions Style Guide](https://docs.gitlab.com/development/documentation/restful_api_styleguide/#operation-descriptions) - [Documentation Guidelines](https://docs.gitlab.com/development/documentation/) ## Available files (To be updated by GitLab team members) ### Completed <details> <summary>Click to expand</summary> - [x] [access_requests.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/access_requests.md) - [x] [admin/token.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/admin/token.md) - [x] [admin_sidekiq_queues.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/admin_sidekiq_queues.md) - [x] [alert_management_alerts.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/alert_management_alerts.md) - [x] [appearance.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/appearance.md) - [x] [applications.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/applications.md) - [x] [attestations.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/attestations.md) - [x] [audit_events.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/audit_events.md) - [x] [avatar.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/avatar.md) - [x] [branches.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/branches.md) - [x] [broadcast_messages.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/broadcast_messages.md) - [x] [bulk_imports.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/bulk_imports.md) - [x] [chat.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/chat.md) - [x] [cluster_agents.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/cluster_agents.md) - [x] [cluster_discovery.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/cluster_discovery.md) - [x] [code_suggestions.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/code_suggestions.md) - [x] [compliance_policy_settings.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/compliance_policy_settings.md) - [x] [container_registry.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/container_registry.md) - [x] [container_repository_protection_rules.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/container_repository_protection_rules.md) - [x] [container_virtual_registries.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/container_virtual_registries.md) - [x] [custom_attributes.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/custom_attributes.md) - [x] [database_migrations.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/database_migrations.md) - [x] [deploy_keys.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/deploy_keys.md) - [x] [deploy_tokens.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/deploy_tokens.md) - [x] [deployments.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/deployments.md) - [x] [dora/metrics.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/dora/metrics.md) - [x] [draft_notes.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/draft_notes.md) - [x] [emoji_reactions.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/emoji_reactions.md) - [x] [environments.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/environments.md) - [x] [epic_issues.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/epic_issues.md) - [x] [epic_links.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/epic_links.md) - [x] [epics.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/epics.md) - [x] [feature_flags.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/feature_flags.md) - [x] [features.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/features.md) - [x] [freeze_periods.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/freeze_periods.md) - [x] [group_activity_analytics.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_activity_analytics.md) - [x] [group_badges.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_badges.md) - [x] [group_boards.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_boards.md) - [x] [group_clusters.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_clusters.md) - [x] [group_enterprise_users.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_enterprise_users.md) - [x] [group_epic_boards.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_epic_boards.md) - [x] [group_import_export.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_import_export.md) - [x] [group_labels.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_labels.md) - [x] [group_members.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_members.md) - [x] [group_milestones.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_milestones.md) - [x] [group_releases.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_releases.md) - [x] [group_repository_storage_moves.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_repository_storage_moves.md) - [x] [group_security_settings.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_security_settings.md) - [x] [group_ssh_certificates.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_ssh_certificates.md) - [x] [group_webhooks.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_webhooks.md) - [x] [group_wikis.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_wikis.md) - [x] [import.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/import.md) - [x] [instance_clusters.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/instance_clusters.md) - [x] [instance_level_ci_variables.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/instance_level_ci_variables.md) - [x] [issue_links.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/issue_links.md) - [x] [issues.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/issues.md) - [x] [issues_statistics.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/issues_statistics.md) - [x] [iterations.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/iterations.md) - [x] [keys.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/keys.md) - [x] [labels.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/labels.md) - [x] [license.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/license.md) - [x] [linked_epics.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/linked_epics.md) - [x] [lint.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/lint.md) - [x] [merge_request_context_commits.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/merge_request_context_commits.md) - [x] [merge_requests.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/merge_requests.md) - [x] [merge_trains.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/merge_trains.md) - [x] [metadata.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/metadata.md) - [x] [milestones.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/milestones.md) - [x] [model_registry.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/model_registry.md) - [x] [namespaces.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/namespaces.md) - [x] [notes.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/notes.md) - [x] [notification_settings.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/notification_settings.md) - [x] [organizations.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/organizations.md) - [x] [packages/composer.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/composer.md) - [x] [packages/conan_v1.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/conan_v1.md) - [x] [packages/conan_v2.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/conan_v2.md) - [x] [packages/debian.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/debian.md) - [x] [packages/debian_group_distributions.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/debian_group_distributions.md) - [x] [packages/debian_project_distributions.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/debian_project_distributions.md) - [x] [packages/go_proxy.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/go_proxy.md) - [x] [packages/helm.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/helm.md) - [x] [packages/maven.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/maven.md) - [x] [packages/nuget.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/nuget.md) - [x] [packages/pypi.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/pypi.md) - [x] [packages/terraform-modules.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/terraform-modules.md) - [x] [packages.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages.md) - [x] [personal_access_tokens.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/personal_access_tokens.md) - [x] [pipeline_schedules.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/pipeline_schedules.md) - [x] [pipeline_triggers.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/pipeline_triggers.md) - [x] [pipelines.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/pipelines.md) - [x] [plan_limits.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/plan_limits.md) - [x] [project_access_tokens.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_access_tokens.md) - [x] [project_aliases.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_aliases.md) - [x] [project_badges.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_badges.md) - [x] [project_markdown_uploads.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_markdown_uploads.md) - [x] [project_snippets.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_snippets.md) - [x] [releases/links.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/releases/links.md) - [x] [repository_submodules.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/repository_submodules.md) - [x] [resource_groups.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/resource_groups.md) - [x] [resource_iteration_events.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/resource_iteration_events.md) - [x] [resource_label_events.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/resource_label_events.md) - [x] [resource_milestone_events.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/resource_milestone_events.md) - [x] [resource_state_events.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/resource_state_events.md) - [x] [resource_weight_events.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/resource_weight_events.md) - [x] [runner_controller_tokens.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/runner_controller_tokens.md) - [x] [runner_controllers.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/runner_controllers.md) - [x] [runners.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/runners.md) - [x] [saml.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/saml.md) - [x] [scim.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/scim.md) - [x] [sidekiq_metrics.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/sidekiq_metrics.md) - [x] [snippet_repository_storage_moves.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/snippet_repository_storage_moves.md) - [x] [statistics.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/statistics.md) - [x] [status_checks.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/status_checks.md) - [x] [suggestions.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/suggestions.md) - [x] [system_hooks.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/system_hooks.md) - [x] [templates/dockerfiles.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/templates/dockerfiles.md) - [x] [templates/gitignores.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/templates/gitignores.md) - [x] [templates/gitlab_ci_ymls.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/templates/gitlab_ci_ymls.md) - [x] [templates/licenses.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/templates/licenses.md) - [x] [todos.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/todos.md) - [x] [topics.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/topics.md) - [x] [usage_data.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/usage_data.md) - [x] [user_email_addresses.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/user_email_addresses.md) - [x] [user_follow_unfollow.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/user_follow_unfollow.md) - [x] [user_keys.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/user_keys.md) - [x] [user_moderation.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/user_moderation.md) - [x] [user_tokens.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/user_tokens.md) - [x] [users.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/users.md) - [x] [virtual_registries_cleanup_policies.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/virtual_registries_cleanup_policies.md) - [x] [vulnerabilities.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/vulnerabilities.md) - [x] [vulnerability_archive_exports.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/vulnerability_archive_exports.md) - [x] [vulnerability_exports.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/vulnerability_exports.md) - [x] [vulnerability_findings.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/vulnerability_findings.md) - [x] [web_commits.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/web_commits.md) - [x] [wikis.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/wikis.md) </details> ### In progress <details> <summary>Click to expand</summary> - [ ] [admin/data_management.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/admin/data_management.md) - [ ] [commits.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/commits.md) - [ ] [discussions.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/discussions.md) - [ ] [geo_nodes.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/geo_nodes.md) - [ ] [geo_sites.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/geo_sites.md) - [ ] [group_protected_branches.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_protected_branches.md) - [ ] [groups.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/groups.md) - [ ] [job_artifacts.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/job_artifacts.md) - [ ] [jobs.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/jobs.md) - [ ] [maven_virtual_registries.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/maven_virtual_registries.md) - [ ] [members.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/members.md) - [ ] [merge_request_approval_settings.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/merge_request_approval_settings.md) - [ ] [merge_request_approvals.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/merge_request_approvals.md) - [ ] [product_analytics.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/product_analytics.md) - [ ] [project_clusters.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_clusters.md) - [ ] [project_forks.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_forks.md) - [ ] [project_import_export.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_import_export.md) - [ ] [project_job_token_scopes.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_job_token_scopes.md) - [ ] [project_templates.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_templates.md) - [ ] [project_vulnerabilities.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_vulnerabilities.md) - [ ] [project_webhooks.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_webhooks.md) - [ ] [protected_environments.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/protected_environments.md) - [ ] [protected_tags.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/protected_tags.md) - [ ] [releases/_index.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/releases/_index.md) - [ ] [remote_mirrors.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/remote_mirrors.md) - [ ] [repositories.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/repositories.md) - [ ] [repository_files.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/repository_files.md) - [ ] [search.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/search.md) - [ ] [search_admin.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/search_admin.md) - [ ] [secure_files.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/secure_files.md) - [ ] [snippets.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/snippets.md) - [ ] [tags.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/tags.md) </details> ### Need to complete <details> <summary>Click to expand</summary> - [ ] [boards.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/boards.md) - [ ] [dependencies.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/dependencies.md) - [ ] [dependency_list_export.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/dependency_list_export.md) - [ ] [dependency_proxy.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/dependency_proxy.md) - [ ] [error_tracking.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/error_tracking.md) - [ ] [events.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/events.md) - [ ] [experiments.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/experiments.md) - [ ] [external_controls.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/external_controls.md) - [ ] [feature_flag_user_lists.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/feature_flag_user_lists.md) - [ ] [google_cloud_integration.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/google_cloud_integration.md) - [ ] [group_access_tokens.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_access_tokens.md) - [ ] [group_integrations.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_integrations.md) - [ ] [group_iterations.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_iterations.md) - [ ] [group_ldap_links.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_ldap_links.md) - [ ] [group_level_variables.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_level_variables.md) - [ ] [group_markdown_uploads.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_markdown_uploads.md) - [ ] [group_placeholder_reassignments.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_placeholder_reassignments.md) - [ ] [group_protected_environments.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_protected_environments.md) - [ ] [group_push_rules.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_push_rules.md) - [ ] [group_relations_export.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/group_relations_export.md) - [ ] [invitations.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/invitations.md) - [ ] [markdown.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/markdown.md) - [ ] [packages/npm.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/npm.md) - [ ] [packages/rubygems.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/packages/rubygems.md) - [ ] [pages.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/pages.md) - [ ] [pages_domains.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/pages_domains.md) - [ ] [project_integrations.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_integrations.md) - [ ] [project_level_variables.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_level_variables.md) - [ ] [project_members.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_members.md) - [ ] [project_packages_protection_rules.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_packages_protection_rules.md) - [ ] [project_pull_mirroring.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_pull_mirroring.md) - [ ] [project_push_rules.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_push_rules.md) - [ ] [project_relations_export.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_relations_export.md) - [ ] [project_repository_storage_moves.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_repository_storage_moves.md) - [ ] [project_security_settings.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_security_settings.md) - [ ] [project_starring.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_starring.md) - [ ] [project_statistics.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/project_statistics.md) - [ ] [projects.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/projects.md) - [ ] [protected_branches.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/protected_branches.md) - [ ] [service_accounts.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/service_accounts.md) - [ ] [settings.md](https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/api/settings.md) </details>
issue